Revert "Enable Blitter for read/write Buffer operations"

This reverts commit 2daab300b2.
Change-Id: Ied1edf88804d6696d1118ddef4de5be75c683b31
Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz 2019-07-12 13:39:13 +02:00 committed by sys_ocldev
parent e29c0b9726
commit 31795ceedf
3 changed files with 2 additions and 5 deletions

View File

@ -102,7 +102,7 @@ DECLARE_DEBUG_VARIABLE(bool, AddClGlSharing, false, "Add cl-gl extension")
DECLARE_DEBUG_VARIABLE(bool, EnablePassInlineData, false, "Enable passing of inline data")
DECLARE_DEBUG_VARIABLE(bool, EnableFormatQuery, false, "Enable sharing format querying")
DECLARE_DEBUG_VARIABLE(bool, AllowOpenFdOperations, false, "When enabled driver is allowed to call DRM_IOCTL_PRIME_HANDLE_TO_FD.")
DECLARE_DEBUG_VARIABLE(bool, EnableBlitterOperationsForReadWriteBuffers, true, "Use Blitter engine for Read/Write Buffers operations")
DECLARE_DEBUG_VARIABLE(bool, EnableBlitterOperationsForReadWriteBuffers, false, "Use Blitter engine for Read/Write Buffers operations")
DECLARE_DEBUG_VARIABLE(bool, EnableFreeMemory, false, "Enable freeMemory in memory manager")
DECLARE_DEBUG_VARIABLE(int32_t, EnableCacheFlushAfterWalker, -1, "-1: platform behavior, 0: disabled, 1: enabled. Adds dedicated cache flush command after WALKER command when surfaces used by kernel require to flush the cache")
DECLARE_DEBUG_VARIABLE(int32_t, EnableLocalMemory, -1, "-1: default behavior, 0: disabled, 1: enabled, Allows allocating graphics memory in Local Memory")

View File

@ -10,7 +10,6 @@
#include "runtime/os_interface/windows/wddm_device_command_stream.h"
#include "test.h"
#include "unit_tests/fixtures/buffer_fixture.h"
#include "unit_tests/helpers/debug_manager_state_restore.h"
#include "unit_tests/helpers/execution_environment_helper.h"
#include "unit_tests/helpers/hw_parse.h"
#include "unit_tests/mocks/mock_command_queue.h"
@ -26,7 +25,6 @@ struct EnqueueBufferWindowsTest : public HardwareParse,
}
void SetUp() override {
DebugManager.flags.EnableBlitterOperationsForReadWriteBuffers.set(false);
executionEnvironment = getExecutionEnvironmentImpl(hwInfo);
}
@ -63,7 +61,6 @@ struct EnqueueBufferWindowsTest : public HardwareParse,
}
protected:
DebugManagerStateRestore restore;
HardwareInfo hardwareInfo;
HardwareInfo *hwInfo = nullptr;
ExecutionEnvironment *executionEnvironment;

View File

@ -111,7 +111,7 @@ DisableDcFlushInEpilogue = 0
OverrideInvalidEngineWithDefault = 0
EnableFormatQuery = 0
AllowOpenFdOperations = 0
EnableBlitterOperationsForReadWriteBuffers = 1
EnableBlitterOperationsForReadWriteBuffers = 0
DisableAuxTranslation = 0
EnableFreeMemory = 0
AllocateSharedAllocationsWithCpuAndGpuStorage = 0