From 7d23cf2035c826ecec6ca6c8fc866c7ff56e9d66 Mon Sep 17 00:00:00 2001 From: Tex Riddell Date: Fri, 19 Jan 2024 18:40:06 -0800 Subject: [PATCH] Update WaveMatrix test shader model requirement to 6.9 --- tools/clang/unittests/HLSLExec/ExecutionTest.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/clang/unittests/HLSLExec/ExecutionTest.cpp b/tools/clang/unittests/HLSLExec/ExecutionTest.cpp index b2a6f069ba..3b6a472f48 100644 --- a/tools/clang/unittests/HLSLExec/ExecutionTest.cpp +++ b/tools/clang/unittests/HLSLExec/ExecutionTest.cpp @@ -649,9 +649,10 @@ class ExecutionTest { D3D_SHADER_MODEL_6_6 = 0x66, D3D_SHADER_MODEL_6_7 = 0x67, D3D_SHADER_MODEL_6_8 = 0x68, + D3D_SHADER_MODEL_6_9 = 0x69, } D3D_SHADER_MODEL; - static const D3D_SHADER_MODEL HIGHEST_SHADER_MODEL = D3D_SHADER_MODEL_6_8; + static const D3D_SHADER_MODEL HIGHEST_SHADER_MODEL = D3D_SHADER_MODEL_6_9; bool UseDxbc() { #ifdef _HLK_CONF @@ -752,7 +753,7 @@ class ExecutionTest { WEX::TestExecution::VerifyOutputSettings::LogOnlyFailures); CComPtr pDevice; - D3D_SHADER_MODEL model = D3D_SHADER_MODEL_6_8; + D3D_SHADER_MODEL model = D3D_SHADER_MODEL_6_9; if (!CreateDevice(&pDevice, model)) { return nullptr;