Skip to content

Commit e649256

Browse files
Execution Tests: Long Vectors fix-up HLK feature reference. (#8353)
The TAEF metadata for referencing the HLK feature name was not conformant. Manually verified by importing the updated test binary and requirement files to a custom HLK server setup to verify end-to-end. Resolves the DXC side work for #7611 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b48703b commit e649256

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tools/clang/unittests/HLSLExec/LongVectors.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2996,19 +2996,19 @@ class DxilConf_SM69_Vectorized_Core : public TestClassCommon {
29962996
#define HLK_TEST_DOUBLE(Op, DataType) \
29972997
TEST_METHOD(Op##_##DataType) { \
29982998
BEGIN_TEST_METHOD_PROPERTIES() \
2999-
TEST_METHOD_PROPERTY( \
3000-
"Kits.Specification", \
3001-
"Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision") \
2999+
TEST_METHOD_PROPERTY("Kits.Specification", \
3000+
"Device.Graphics.D3D12.DXILCore.ShaderModel69." \
3001+
"DoublePrecision.Optional") \
30023002
END_TEST_METHOD_PROPERTIES() \
30033003
runTest<DataType, OpType::Op>(); \
30043004
}
30053005

30063006
#define HLK_WAVEOP_TEST_DOUBLE(Op, DataType) \
30073007
TEST_METHOD(Op##_##DataType) { \
30083008
BEGIN_TEST_METHOD_PROPERTIES() \
3009-
TEST_METHOD_PROPERTY( \
3010-
"Kits.Specification", \
3011-
"Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision") \
3009+
TEST_METHOD_PROPERTY("Kits.Specification", \
3010+
"Device.Graphics.D3D12.DXILCore.ShaderModel69." \
3011+
"DoublePrecision.Optional") \
30123012
END_TEST_METHOD_PROPERTIES() \
30133013
runWaveOpTest<DataType, OpType::Op>(); \
30143014
}
@@ -3025,7 +3025,7 @@ class DxilConf_SM69_Vectorized_Double : public TestClassCommon {
30253025
"Validates required double precision SM 6.9 vectorized DXIL operations")
30263026
TEST_METHOD_PROPERTY(
30273027
"Kits.Specification",
3028-
"Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision")
3028+
"Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optional")
30293029
TEST_METHOD_PROPERTY(L"Priority", L"0")
30303030
END_TEST_CLASS()
30313031

0 commit comments

Comments
 (0)