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 <mattst88@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Anuj Phogat 2017-07-20 16:20:33 -07:00 committed by Matt Turner
parent f05e0d9c2a
commit 1484876ef7
1 changed files with 1 additions and 1 deletions

View File

@ -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: {