Module: Mesa Branch: master Commit: 68cfc65ccbca748f0dfdc85876b9b5c02e598c11 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=68cfc65ccbca748f0dfdc85876b9b5c02e598c11
Author: Matt Turner <[email protected]> Date: Wed Nov 6 10:14:45 2019 -0800 intel/compiler: Test compaction on Gen <= 12 With the previous commits we can now enable the unit test on Gen <= 12. Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2635> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2635> --- src/intel/compiler/test_eu_compact.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/compiler/test_eu_compact.cpp b/src/intel/compiler/test_eu_compact.cpp index 4cb33aefba2..bf87ff844b4 100644 --- a/src/intel/compiler/test_eu_compact.cpp +++ b/src/intel/compiler/test_eu_compact.cpp @@ -334,7 +334,7 @@ main(int argc, char **argv) struct gen_device_info *devinfo = (struct gen_device_info *)calloc(1, sizeof(*devinfo)); bool fail = false; - for (devinfo->gen = 5; devinfo->gen <= 9; devinfo->gen++) { + for (devinfo->gen = 5; devinfo->gen <= 12; devinfo->gen++) { fail |= run_tests(devinfo); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
