Skip to content

Commit 016b8c7

Browse files
authored
[SYCL][ESIMD]Reenable the tests with driver feature that support the required functionality (#11174)
1 parent 115808f commit 016b8c7

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

sycl/test-e2e/ESIMD/accessor_local.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
3-
// TODO: Reenable the test for Gen12 once driver issue is fixed
4-
// REQUIRES: gpu-intel-pvc
53
// This test verifies usage of local_accessor methods operator[]
64
// and get_pointer().
75

@@ -114,9 +112,9 @@ int main() {
114112
std::cout << "Running on " << Dev.get_info<sycl::info::device::name>()
115113
<< ", Local memory size available : " << DeviceSLMSize << std::endl;
116114

117-
if (!isGPUDriverGE(Q, esimd_test::GPUDriverOS::LinuxAndWindows, "26690",
118-
"101.4576")) {
119-
std::cout << "Skipped. The test requires GPU driver 1.3.26690 or newer.\n";
115+
if (!isGPUDriverGE(Q, esimd_test::GPUDriverOS::LinuxAndWindows, "27202",
116+
"101.4677")) {
117+
std::cout << "Skipped. The test requires GPU driver 1.3.27202 or newer.\n";
120118
return 0;
121119
}
122120

sycl/test-e2e/ESIMD/local_accessor_block_load_store.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//===----------------------------------------------------------------------===//
88
// RUN: %{build} -o %t.out
99
// RUN: %{run} %t.out
10-
// TODO: Reenable the test for Gen12 once driver issue is fixed
11-
// REQUIRES: gpu-intel-pvc
1210
// This test verifies usage of block_load/block_store for local_accessor.
1311

1412
#include "esimd_test_utils.hpp"
@@ -100,9 +98,9 @@ int main() {
10098
auto DeviceSLMSize = Dev.get_info<sycl::info::device::local_mem_size>();
10199
esimd_test::printTestLabel(Q, "Local memory size available", DeviceSLMSize);
102100

103-
if (!isGPUDriverGE(Q, esimd_test::GPUDriverOS::LinuxAndWindows, "26690",
104-
"101.4576")) {
105-
std::cout << "Skipped. The test requires GPU driver 1.3.26690 or newer.\n";
101+
if (!isGPUDriverGE(Q, esimd_test::GPUDriverOS::LinuxAndWindows, "27202",
102+
"101.4677")) {
103+
std::cout << "Skipped. The test requires GPU driver 1.3.27202 or newer.\n";
106104
return 0;
107105
}
108106

sycl/test-e2e/ESIMD/local_accessor_copy_to_from.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// RUN: %{build} -o %t.out
99
// RUN: %{run} %t.out
1010
//
11-
// TODO: Reenable the test for Gen12 once driver issue is fixed
12-
// REQUIRES: gpu-intel-pvc
1311
// The test checks functionality of the gather/scatter local
1412
// accessor-based ESIMD intrinsics.
1513

@@ -102,9 +100,9 @@ int main() {
102100

103101
auto dev = q.get_device();
104102
std::cout << "Running on " << dev.get_info<info::device::name>() << "\n";
105-
if (!isGPUDriverGE(q, esimd_test::GPUDriverOS::LinuxAndWindows, "26690",
106-
"101.4576")) {
107-
std::cout << "Skipped. The test requires GPU driver 1.3.26690 or newer.\n";
103+
if (!isGPUDriverGE(q, esimd_test::GPUDriverOS::LinuxAndWindows, "27202",
104+
"101.4677")) {
105+
std::cout << "Skipped. The test requires GPU driver 1.3.27202 or newer.\n";
108106
return 0;
109107
}
110108

0 commit comments

Comments
 (0)