refactor: correct naming of enum class constants 1/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-05 12:06:54 +00:00
committed by Compute-Runtime-Automation
parent 1fcafd460a
commit da957d1a37
72 changed files with 458 additions and 457 deletions

View File

@@ -33,7 +33,7 @@ class TimestampPackets : public TagTypeBase {
return AllocationType::TIMESTAMP_PACKET_TAG_BUFFER;
}
static constexpr TagNodeType getTagNodeType() { return TagNodeType::TimestampPacket; }
static constexpr TagNodeType getTagNodeType() { return TagNodeType::timestampPacket; }
static constexpr size_t getSinglePacketSize() { return sizeof(Packet); }
@@ -165,7 +165,7 @@ struct TimestampPacketHelper {
PipeControlArgs args;
args.dcFlushEnable = MemorySynchronizationCommands<GfxFamily>::getDcFlushEnable(true, rootDeviceEnvironment);
MemorySynchronizationCommands<GfxFamily>::addBarrierWithPostSyncOperation(
cmdStream, PostSyncMode::ImmediateData,
cmdStream, PostSyncMode::immediateData,
cacheFlushTimestampPacketGpuAddress, 0, rootDeviceEnvironment, args);
}