mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 05:56:36 +08:00
refactor: correct naming of enum class constants 4/n
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
01dd503e47
commit
432142c574
@@ -41,7 +41,7 @@ class ExecutionEnvironment : public ReferenceTrackedObject<ExecutionEnvironment>
|
||||
debuggingEnabledMode = debuggingMode;
|
||||
}
|
||||
DebuggingMode getDebuggingMode() const { return debuggingEnabledMode; }
|
||||
bool isDebuggingEnabled() const { return debuggingEnabledMode != DebuggingMode::Disabled; }
|
||||
bool isDebuggingEnabled() const { return debuggingEnabledMode != DebuggingMode::disabled; }
|
||||
void setMetricsEnabled(bool value) {
|
||||
this->metricsEnabled = value;
|
||||
}
|
||||
@@ -82,7 +82,7 @@ class ExecutionEnvironment : public ReferenceTrackedObject<ExecutionEnvironment>
|
||||
bool subDevicesAsDevices = false;
|
||||
bool combinedDeviceHierarchy = false;
|
||||
|
||||
DebuggingMode debuggingEnabledMode = DebuggingMode::Disabled;
|
||||
DebuggingMode debuggingEnabledMode = DebuggingMode::disabled;
|
||||
std::unordered_map<uint32_t, uint32_t> rootDeviceNumCcsMap;
|
||||
std::mutex initializeDirectSubmissionControllerMutex;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user