From: Matt Turner Date: Wed, 30 Aug 2017 22:45:22 +0000 (-0700) Subject: i965: Add GLK, CFL, CNL to test_eu_validate.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1fcdb1cbeae058cc23349485dca7cc6c7de398f1;p=mesa.git i965: Add GLK, CFL, CNL to test_eu_validate.c --- 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 { @@ -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); }