@@ -452,10 +452,8 @@ template <typename T, TestFeatures Features> bool testUSM(queue Q) {
452
452
453
453
// Check VS > 1. GPU supports only dwords and qwords in this mode.
454
454
if constexpr (sizeof (T) >= 4 ) {
455
- // TODO: This test case causes flaky fail. Enable it after the issue
456
- // in GPU driver is fixed.
457
- // Passed &= testUSM<T, 16, 2, UseMask, !UsePassThru, UseProperties>(
458
- // Q, 3, AlignElemProps);
455
+ Passed &= testUSM<T, 16 , 2 , UseMask, !UsePassThru, UseProperties>(
456
+ Q, 3 , AlignElemProps);
459
457
460
458
Passed &= testUSM<T, 32 , 2 , !UseMask, !UsePassThru, UseProperties>(
461
459
Q, 3 , AlignElemProps);
@@ -690,10 +688,8 @@ template <typename T, TestFeatures Features> bool testSLM(queue Q) {
690
688
691
689
// Check VS > 1. GPU supports only dwords and qwords in this mode.
692
690
if constexpr (sizeof (T) >= 4 ) {
693
- // TODO: This test case causes flaky fail. Enable it after the issue
694
- // in GPU driver is fixed.
695
- // Passed &= testUSM<T, 16, 2, UseMask, !UsePassThru, UseProperties>(
696
- // Q, 3, AlignElemProps);
691
+ Passed &= testUSM<T, 16 , 2 , UseMask, !UsePassThru, UseProperties>(
692
+ Q, 3 , AlignElemProps);
697
693
698
694
Passed &= testSLM<T, 32 , 2 , !UseMask, !UsePassThru, UseProperties>(
699
695
Q, 3 , AlignElemProps);
@@ -746,10 +742,8 @@ template <typename T, TestFeatures Features> bool testACC(queue Q) {
746
742
747
743
// Check VS > 1. GPU supports only dwords and qwords in this mode.
748
744
if constexpr (sizeof (T) >= 4 ) {
749
- // TODO: This test case causes flaky fail. Enable it after the issue
750
- // in GPU driver is fixed.
751
- // Passed &= testACC<T, 16, 2, UseMask, !UsePassThru, UseProperties>(
752
- // Q, 3, AlignElemProps);
745
+ Passed &= testACC<T, 16 , 2 , UseMask, !UsePassThru, UseProperties>(
746
+ Q, 3 , AlignElemProps);
753
747
754
748
Passed &= testACC<T, 32 , 2 , !UseMask, !UsePassThru, UseProperties>(
755
749
Q, 3 , AlignElemProps);
@@ -996,11 +990,8 @@ template <typename T, TestFeatures Features> bool testLACC(queue Q) {
996
990
997
991
// Check VS > 1. GPU supports only dwords and qwords in this mode.
998
992
if constexpr (sizeof (T) >= 4 ) {
999
- // TODO: This test case causes flaky fail. Enable it after the issue
1000
- // in GPU driver is fixed.
1001
- // Passed &= testACC<T, 16, 2, UseMask, !UsePassThru, UseProperties>(
1002
- // Q, 3, AlignElemProps);
1003
-
993
+ Passed &= testACC<T, 16 , 2 , UseMask, !UsePassThru, UseProperties>(
994
+ Q, 3 , AlignElemProps);
1004
995
Passed &= testLACC<T, 32 , 2 , !UseMask, !UsePassThru, UseProperties>(
1005
996
Q, 3 , AlignElemProps);
1006
997
Passed &= testLACC<T, 32 , 2 , UseMask, !UsePassThru, UseProperties>(
0 commit comments