OverrideOCLMaxParamSize is meant to be DWORD, not bool.

This change changed it from bool to DWORD.

Change-Id: I5e9cfd9a02a777832842b2c2547afa8f56b0a5d8
This commit is contained in:
Gu, Junjie
2020-06-30 14:50:54 -07:00
committed by Zuul
parent ff29214977
commit 261895ce35

View File

@ -397,7 +397,7 @@ DECLARE_IGC_REGKEY(bool, EmitDebugRanges, false, "Emit .debug_ranges section whe
DECLARE_IGC_REGKEY(bool, EmitDebugLoc, false, "Enable generation of .debug_loc section", false)
DECLARE_IGC_REGKEY(bool, EnableA64WA, true, "Guarantee A64 load/store addres-hi is uniform", false)
DECLARE_IGC_REGKEY(bool, EnableZEBinary, false, "Enable output in ZE binary format", true)
DECLARE_IGC_REGKEY(bool, OverrideOCLMaxParamSize, 0, "Override the value imposed on the kernel by CL_DEVICE_MAX_PARAMETER_SIZE. Value in bytes, if value==0 no override happens.", true)
DECLARE_IGC_REGKEY(DWORD, OverrideOCLMaxParamSize, 0, "Override the value imposed on the kernel by CL_DEVICE_MAX_PARAMETER_SIZE. Value in bytes, if value==0 no override happens.", true)
DECLARE_IGC_GROUP("Generating precompiled headers")
DECLARE_IGC_REGKEY(bool, ApplyConservativeRastWAHeader, true, "Apply WaConservativeRasterization for the platforms enabled", false)