mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +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
@@ -61,8 +61,8 @@ struct HeapReserveArguments {
|
||||
class CommandContainer : public NonCopyableOrMovableClass {
|
||||
public:
|
||||
enum class ErrorCode {
|
||||
SUCCESS = 0,
|
||||
OUT_OF_DEVICE_MEMORY = 1
|
||||
success = 0,
|
||||
outOfDeviceMemory = 1
|
||||
};
|
||||
|
||||
static constexpr size_t defaultListCmdBufferSize = 1u * MemoryConstants ::megaByte;
|
||||
@@ -251,7 +251,7 @@ class CommandContainer : public NonCopyableOrMovableClass {
|
||||
|
||||
uint32_t dirtyHeaps = std::numeric_limits<uint32_t>::max();
|
||||
uint32_t numIddsPerBlock = 64;
|
||||
HeapAddressModel heapAddressModel = HeapAddressModel::PrivateHeaps;
|
||||
HeapAddressModel heapAddressModel = HeapAddressModel::privateHeaps;
|
||||
uint32_t slmSize = std::numeric_limits<uint32_t>::max();
|
||||
uint32_t nextIddInBlock = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user