From 68cfc65ccbca748f0dfdc85876b9b5c02e598c11 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 6 Nov 2019 10:14:45 -0800 Subject: 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 Tested-by: Marge Bot Part-of: --- 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); } -- cgit v1.2.1