performance: enable pat index, mtl linux
Enable programming pat indexes on mtl linux by default. Related-To: NEO-7896 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
parent
8dc3364d56
commit
07639401c5
|
@ -84,7 +84,7 @@ DECLARE_DEBUG_VARIABLE(bool, ForceMemoryPrefetchForKmdMigratedSharedAllocations,
|
|||
DECLARE_DEBUG_VARIABLE(bool, ClKhrExternalMemoryExtension, true, "Enable cl_khr_external_memory extension")
|
||||
DECLARE_DEBUG_VARIABLE(bool, WaitForMemoryRelease, false, "Wait for memory release when out of memory")
|
||||
DECLARE_DEBUG_VARIABLE(bool, RemoveRestrictionsOnNumberOfThreadsInGpgpuThreadGroup, 0, "0 - default disabled, 1- remove restrictions on NumberOfThreadsInGpgpuThreadGroup in INTERFACE_DESCRIPTOR_DATA")
|
||||
DECLARE_DEBUG_VARIABLE(bool, DisableGemCreateExtSetPat, true, "Do not use I915_GEM_CREATE_EXT_SET_PAT extension when gem create ext is called")
|
||||
DECLARE_DEBUG_VARIABLE(bool, DisableGemCreateExtSetPat, false, "Do not use I915_GEM_CREATE_EXT_SET_PAT extension when gem create ext is called")
|
||||
DECLARE_DEBUG_VARIABLE(bool, SkipInOrderNonWalkerSignalingAllowed, false, "Allows for skipping non walker signalling in InOrder command lists, default: false")
|
||||
DECLARE_DEBUG_VARIABLE(std::string, ForceDeviceId, std::string("unk"), "Override device id in AUB/TBX mode")
|
||||
DECLARE_DEBUG_VARIABLE(std::string, FilterDeviceId, std::string("unk"), "Device id filter, adapter matching device id will be opened; ignored when unk")
|
||||
|
@ -221,7 +221,7 @@ DECLARE_DEBUG_VARIABLE(int32_t, OverridePatIndexForSystemMemory, -1, "-1: defaul
|
|||
DECLARE_DEBUG_VARIABLE(int32_t, OverridePatIndexForDeviceMemory, -1, "-1: default, >=0: PatIndex to override. Applicable only for Device memory.")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, OverridePatIndexForUncachedTypes, -1, "-1: default, >=0: PatIndex to override for uncached resource types. Applicable only on Linux.")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, OverridePatIndexForCachedTypes, -1, "-1: default, >=0: PatIndex to override for cached resource types. Applicable only on Linux.")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, UseGemCreateExtInAllocateMemoryByKMD, 0, "Use gem create ext when allocating memory by KMD")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, UseGemCreateExtInAllocateMemoryByKMD, -1, "Use gem create ext when allocating memory by KMD")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, UseTileMemoryBankInVirtualMemoryCreation, -1, "-1: default - on, 0: do not assign tile memory bank to virtual memory space, 1: assign tile memory bank to virtual memory space")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, OverrideTimestampEvents, -1, "-1: default (based on user settings), 0: Force disable timestamp events (no timestamps will be reported), 1: Force enable timestamp events")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, ForcePreParserEnabledForMiArbCheck, -1, "-1: default , 0: PreParser disabled, 1: PreParser enabled")
|
||||
|
|
|
@ -552,7 +552,7 @@ TrackNumCsrClientsOnSyncPoints = -1
|
|||
EventTimestampRefreshIntervalInMilliSec = -1
|
||||
SynchronizeEventBeforeReset = -1
|
||||
RemoveRestrictionsOnNumberOfThreadsInGpgpuThreadGroup = 0
|
||||
DisableGemCreateExtSetPat = 1
|
||||
DisableGemCreateExtSetPat = 0
|
||||
SkipDcFlushOnBarrierWithoutEvents = -1
|
||||
EnableAIL=1
|
||||
WaitForUserFenceOnEventHostSynchronize = -1
|
||||
|
@ -586,5 +586,5 @@ ExperimentalEnableHostAllocationCache = -1
|
|||
OverridePatIndexForUncachedTypes = -1
|
||||
OverridePatIndexForCachedTypes = -1
|
||||
FlushTlbBeforeCopy = -1
|
||||
UseGemCreateExtInAllocateMemoryByKMD = 0
|
||||
UseGemCreateExtInAllocateMemoryByKMD = -1
|
||||
# Please don't edit below this line
|
||||
|
|
Loading…
Reference in New Issue