From f509ac3fcef0da544f2b538a8ce178893aaee288 Mon Sep 17 00:00:00 2001 From: Lukasz Jobczyk Date: Tue, 25 Apr 2023 13:54:57 +0000 Subject: [PATCH] Remove UseDrmVirtualEnginesForBcs from CAL config Signed-off-by: Lukasz Jobczyk --- shared/source/execution_environment/execution_environment.cpp | 1 - .../execution_environment/execution_environment_tests.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/shared/source/execution_environment/execution_environment.cpp b/shared/source/execution_environment/execution_environment.cpp index a963bb8346..056a17b0e2 100644 --- a/shared/source/execution_environment/execution_environment.cpp +++ b/shared/source/execution_environment/execution_environment.cpp @@ -308,7 +308,6 @@ void ExecutionEnvironment::parseCcsCountLimitations() { void ExecutionEnvironment::configureNeoEnvironment() { if (DebugManager.flags.NEO_CAL_ENABLED.get()) { - DebugManager.flags.UseDrmVirtualEnginesForBcs.setIfDefault(0); DebugManager.flags.EnableCmdQRoundRobindBcsEngineAssignLimit.setIfDefault(6); DebugManager.flags.EnableCmdQRoundRobindBcsEngineAssign.setIfDefault(1); DebugManager.flags.ForceBCSForInternalCopyEngine.setIfDefault(7); diff --git a/shared/test/unit_test/execution_environment/execution_environment_tests.cpp b/shared/test/unit_test/execution_environment/execution_environment_tests.cpp index f22ef7b692..519843786b 100644 --- a/shared/test/unit_test/execution_environment/execution_environment_tests.cpp +++ b/shared/test/unit_test/execution_environment/execution_environment_tests.cpp @@ -186,7 +186,6 @@ TEST(ExecutionEnvironment, givenEnableDirectSubmissionControllerSetZeroWhenIniti TEST(ExecutionEnvironment, givenNeoCalEnabledWhenCreateExecutionEnvironmentThenSetDebugVariables) { const std::unordered_map config = { - {"UseDrmVirtualEnginesForBcs", 0}, {"EnableCmdQRoundRobindBcsEngineAssignLimit", 6}, {"EnableCmdQRoundRobindBcsEngineAssign", 1}, {"ForceBCSForInternalCopyEngine", 7},