diff options
author | Matt Turner <[email protected]> | 2017-08-30 15:45:22 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-10-04 14:08:54 -0700 |
commit | 1fcdb1cbeae058cc23349485dca7cc6c7de398f1 (patch) | |
tree | 1c2aaa42c1c4b6317e8b5293f0d768ecfd283a28 /src/intel/compiler/test_eu_validate.cpp | |
parent | d4c39e9cfff16d401a4d1874c9ec19f3a3036df2 (diff) |
i965: Add GLK, CFL, CNL to test_eu_validate.c
Diffstat (limited to 'src/intel/compiler/test_eu_validate.cpp')
-rw-r--r-- | src/intel/compiler/test_eu_validate.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/intel/compiler/test_eu_validate.cpp b/src/intel/compiler/test_eu_validate.cpp index 46d2b83e346..3dd560074f7 100644 --- a/src/intel/compiler/test_eu_validate.cpp +++ b/src/intel/compiler/test_eu_validate.cpp @@ -32,6 +32,8 @@ enum subgen { IS_CHV, IS_BXT, IS_KBL, + IS_GLK, + IS_CFL, }; static const struct gen_info { @@ -51,6 +53,9 @@ static const struct gen_info { { "skl", 9 }, { "bxt", 9, IS_BXT }, { "kbl", 9, IS_KBL }, + { "glk", 9, IS_GLK }, + { "cfl", 9, IS_CFL }, + { "cnl", 10 }, }; class validation_test: public ::testing::TestWithParam<struct gen_info> { @@ -86,6 +91,8 @@ void validation_test::SetUp() devinfo.is_cherryview = info.subgen == IS_CHV; devinfo.is_broxton = info.subgen == IS_BXT; devinfo.is_kabylake = info.subgen == IS_KBL; + devinfo.is_geminilake = info.subgen == IS_GLK; + devinfo.is_coffeelake = info.subgen == IS_CFL; brw_init_codegen(&devinfo, p, p); } |