disable dumping of buffers or images by regkey in AUBs

Change-Id: I0dc6cf5a9c4df3e2f2057870045a2f10a4a80720
This commit is contained in:
Brandon Fliflet
2018-01-12 15:38:42 -08:00
committed by sys_ocldev
parent a3a21d8168
commit e719ec4c47
2 changed files with 5 additions and 1 deletions

View File

@@ -56,6 +56,8 @@ DECLARE_DEBUG_VARIABLE(int32_t, SetCommandStreamReceiver, 0, "Set command stream
DECLARE_DEBUG_VARIABLE(std::string, TbxServer, "127.0.0.1", "TCP-IP address of TBX server")
DECLARE_DEBUG_VARIABLE(int32_t, TbxPort, 4321, "TCP-IP port of TBX server")
DECLARE_DEBUG_VARIABLE(std::string, ProductFamilyOverride, "unk", "Specify product for use in AUB/TBX")
DECLARE_DEBUG_VARIABLE(bool, DisableAUBBufferDump, false, "Avoid dumping buffers in AUB files")
DECLARE_DEBUG_VARIABLE(bool, DisableAUBImageDump, false, "Avoid dumping images in AUB files")
/*FEATURE FLAGS*/
DECLARE_DEBUG_VARIABLE(bool, EnableNV12, true, "Enables NV12 extension")
DECLARE_DEBUG_VARIABLE(bool, EnablePackedYuv, true, "Enables cl_packed_yuv extension")

View File

@@ -50,4 +50,6 @@ EventsDebugEnable = false
UseMaxSimdSizeToDeduceMaxWorkgroupSize = false
EnableComputeWorkSizeSquared = false
TrackParentEvents = false
PrintLWSSizes = false
PrintLWSSizes = false
DisableAUBBufferDump = false
DisableAUBImageDump = false