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},