Skip to content

Commit 7331894

Browse files
committed
Shader model 6.10
1 parent 245f190 commit 7331894

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/clang/unittests/HLSLExec/LinearAlgebra.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ class LinAlgTestClassCommon {
482482
L"FailIfRequirementsNotMet", FailIfRequirementsNotMet);
483483

484484
const bool SkipUnsupported = !FailIfRequirementsNotMet;
485-
// Linear algebra requires at least SM 6.9 device support.
486-
if (!D3D12SDK->createDevice(&D3DDevice, D3D_SHADER_MODEL_6_9,
485+
// Linear algebra requires at least SM 6.10 device support.
486+
if (!D3D12SDK->createDevice(&D3DDevice, D3D_SHADER_MODEL_6_10,
487487
SkipUnsupported)) {
488488
if (FailIfRequirementsNotMet)
489489
hlsl_test::LogErrorFmt(
@@ -507,7 +507,7 @@ class LinAlgTestClassCommon {
507507
hlsl_test::LogCommentFmt(L"Creating device");
508508

509509
const bool SkipUnsupported = false;
510-
VERIFY_IS_TRUE(D3D12SDK->createDevice(&D3DDevice, D3D_SHADER_MODEL_6_9,
510+
VERIFY_IS_TRUE(D3D12SDK->createDevice(&D3DDevice, D3D_SHADER_MODEL_6_10,
511511
SkipUnsupported));
512512
}
513513

0 commit comments

Comments
 (0)