mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 22:08:53 +08:00
Revert "feature: Enable Tile64 Optimization Flag"
This reverts commit 105a586615.
Signed-off-by: Andrzej Koska <andrzej.koska@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
0db7128503
commit
1abb48c3e0
@@ -560,7 +560,7 @@ DECLARE_DEBUG_VARIABLE(int32_t, SignalAllEventPackets, -1, "All packets of event
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, EnableBcsSwControlWa, -1, "Enable BCS WA via BCSSWCONTROL MMIO. -1: default, 0: disabled, 1: if src in system mem, 2: if dst in system mem, 3: if src and dst in system mem, 4: always")
|
||||
DECLARE_DEBUG_VARIABLE(bool, EnableHostAllocationMemPolicy, false, "Enables Memory Policy for host allocation")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, OverrideHostAllocationMemPolicyMode, -1, "Override Memory Policy mode for host allocation -1: default (use the system configuration), 0: MPOL_DEFAULT, 1: MPOL_PREFERRED, 2: MPOL_BIND, 3: MPOL_INTERLEAVED, 4: MPOL_LOCAL, 5: MPOL_PREFERRED_MANY")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, EnableFtrTile64Optimization, -1, "Control feature Tile64 Optimization flag passed to gmmlib. -1: pass as-is, 0: disable flag(default due to NEO-10623), 1: enable flag");
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, EnableFtrTile64Optimization, 0, "Control feature Tile64 Optimization flag passed to gmmlib. -1: pass as-is, 0: disable flag(default due to NEO-10623), 1: enable flag");
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, ForceTheMaximumNumberOfOutstandingRayqueriesPerSs, -1, "Set the maximum number of outstanding RayQueries per SS, -1: default, 0: 128, 1: 256, 2: 512, 3: 1024")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, ForceDispatchTimeoutCounter, -1, "Set timeout for Synchronous Ray Tracing, -1: default, 0: 64, 1: 128, 2: 192, 3: 256, 4: 512, 5: 1024, 6: 2048, 7: 4096")
|
||||
DECLARE_DEBUG_VARIABLE(int32_t, Enable10ThreadsPerEu, -1, "Enable 10 threads per EU HSD-18022695913, -1: default, 0: disabled, 1: enabled")
|
||||
|
||||
@@ -610,7 +610,7 @@ EnableWaitOnUserFenceAfterBindAndUnbind = -1
|
||||
UseGemCreateExtInAllocateMemoryByKMD = -1
|
||||
PrintMmapAndMunMapCalls = -1
|
||||
UseLocalPreferredForCacheableBuffers = -1
|
||||
EnableFtrTile64Optimization = -1
|
||||
EnableFtrTile64Optimization = 0
|
||||
ForceTlbFlushWithTaskCountAfterCopy = -1
|
||||
ForceSynchronizedDispatchMode = -1
|
||||
DirectSubmissionControllerAdjustOnThrottleAndAcLineStatus = -1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2024 Intel Corporation
|
||||
* Copyright (C) 2018-2025 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -119,7 +119,7 @@ TEST_F(OsInterfaceTest, givenEnableFtrTile64OptimizationDebugKeyWhenSetThenPrope
|
||||
{
|
||||
wddm->gfxFeatureTable->FtrTile64Optimization = 1;
|
||||
auto gmmHelper = std::make_unique<GmmHelper>(rootDeviceEnvironment);
|
||||
EXPECT_EQ(1u, passedFtrTable.FtrTile64Optimization);
|
||||
EXPECT_EQ(0u, passedFtrTable.FtrTile64Optimization);
|
||||
}
|
||||
{
|
||||
debugManager.flags.EnableFtrTile64Optimization.set(-1);
|
||||
|
||||
Reference in New Issue
Block a user