mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Debug flag to control MI_ARB_CHECK prefetcher
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
41c51df086
commit
e24322f266
@@ -5761,6 +5761,17 @@ typedef struct tagMI_ARB_CHECK {
|
||||
inline uint32_t getPreFetchDisable() const {
|
||||
return TheStructure.Common.Pre_FetchDisable;
|
||||
}
|
||||
|
||||
// patched for easier templates usage
|
||||
inline void setPreParserDisable(const uint32_t value) {
|
||||
setPreFetchDisable(value);
|
||||
}
|
||||
|
||||
// patched for easier templates usage
|
||||
inline uint32_t getPreParserDisable() const {
|
||||
return getPreFetchDisable();
|
||||
}
|
||||
|
||||
inline void setMaskBits(const uint32_t value) {
|
||||
DEBUG_BREAK_IF(value > 0xff00);
|
||||
TheStructure.Common.MaskBits = value;
|
||||
|
||||
Reference in New Issue
Block a user