diff options
author | Anuj Phogat <[email protected]> | 2018-10-12 14:13:21 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2018-11-26 15:11:36 -0800 |
commit | 16e4911972754af49268a5014fc07f0a45a8e7af (patch) | |
tree | ebf911b5a1b82847de99b84200646ca8c47d0e7a /src/intel/vulkan | |
parent | 3f55fd3814156b6384679bf4013ebabe53ccedde (diff) |
anv/icl: Set use full ways in L3CNTLREG
L3 allocation table in h/w specification recommends using 4 KB
granularity for programming allocation fields in L3CNTLREG.
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/genX_cmd_buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/genX_cmd_buffer.c b/src/intel/vulkan/genX_cmd_buffer.c index ed88157170d..c7e5ef9596e 100644 --- a/src/intel/vulkan/genX_cmd_buffer.c +++ b/src/intel/vulkan/genX_cmd_buffer.c @@ -1623,6 +1623,7 @@ genX(cmd_buffer_config_l3)(struct anv_cmd_buffer *cmd_buffer, * desirable behavior. */ .ErrorDetectionBehaviorControl = true, + .UseFullWays = true, #endif .URBAllocation = cfg->n[GEN_L3P_URB], .ROAllocation = cfg->n[GEN_L3P_RO], |