Files
compute-runtime/shared/source/helpers/pipe_control_args.h
Zbigniew Zdanowicz 05158febdb refactor: add missing pipe control field in xehpg platform
Related-To: NEO-15376

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
2025-07-31 14:36:05 +02:00

42 lines
1.2 KiB
C++

/*
* Copyright (C) 2020-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
struct PipeControlArgs {
PipeControlArgs() = default;
void *postSyncCmd = nullptr;
bool blockSettingPostSyncProperties = false;
bool csStallOnly = false;
bool dcFlushEnable = false;
bool renderTargetCacheFlushEnable = false;
bool instructionCacheInvalidateEnable = false;
bool textureCacheInvalidationEnable = false;
bool pipeControlFlushEnable = false;
bool vfCacheInvalidationEnable = false;
bool constantCacheInvalidationEnable = false;
bool stateCacheInvalidationEnable = false;
bool genericMediaStateClear = false;
bool hdcPipelineFlush = false;
bool tlbInvalidation = false;
bool compressionControlSurfaceCcsFlush = false;
bool notifyEnable = false;
bool workloadPartitionOffset = false;
bool amfsFlushEnable = false;
bool unTypedDataPortCacheFlush = false;
bool depthCacheFlushEnable = false;
bool depthStallEnable = false;
bool protectedMemoryDisable = false;
bool isWalkerWithProfilingEnqueued = false;
bool commandCacheInvalidateEnable = false;
};
} // namespace NEO