summaryrefslogtreecommitdiffstats
path: root/src/intel/compiler
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2017-08-30 15:45:22 -0700
committerMatt Turner <[email protected]>2017-10-04 14:08:54 -0700
commit1fcdb1cbeae058cc23349485dca7cc6c7de398f1 (patch)
tree1c2aaa42c1c4b6317e8b5293f0d768ecfd283a28 /src/intel/compiler
parentd4c39e9cfff16d401a4d1874c9ec19f3a3036df2 (diff)
i965: Add GLK, CFL, CNL to test_eu_validate.c
Diffstat (limited to 'src/intel/compiler')
-rw-r--r--src/intel/compiler/test_eu_validate.cpp7
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);
}