summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnuj Phogat <[email protected]>2017-07-20 16:20:33 -0700
committerMatt Turner <[email protected]>2018-03-22 09:56:09 -0700
commit1484876ef78219e8014278c2c43b8d90e6260b11 (patch)
tree0db50510908a370508674ec8bf8d7233a7e41221
parentf05e0d9c2a5f5a26e0678b40fff17086098dc405 (diff)
intel/compiler/icl: Update the assert in brw_stage_has_packed_dispatch()
Rafael ran piglit with the test code enabled and saw no additional GPU hangs. Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r--src/intel/compiler/brw_compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h
index 0e27c898203..d3ae6499b91 100644
--- a/src/intel/compiler/brw_compiler.h
+++ b/src/intel/compiler/brw_compiler.h
@@ -1294,7 +1294,7 @@ brw_stage_has_packed_dispatch(MAYBE_UNUSED const struct gen_device_info *devinfo
* to do a full test run with brw_fs_test_dispatch_packing() hooked up to
* the NIR front-end before changing this assertion.
*/
- assert(devinfo->gen <= 10);
+ assert(devinfo->gen <= 11);
switch (stage) {
case MESA_SHADER_FRAGMENT: {