Skip to content

Commit 1dbee22

Browse files
authored
[SYCL][ESIMD][E2E] Add Linux driver version requirement to block_store_slm_acc.cpp (#12054)
Originally it seemed the problem was only on Windows, but it seems it happens on Linux too, see [here](#11921 (comment)). I manually verified it fails consistently before this version and passes consistently after this version. Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 2c1859e commit 1dbee22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sycl/test-e2e/ESIMD/unified_memory_api/Inputs/block_store.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -682,9 +682,9 @@ bool test_block_store_local_acc_slm(queue Q) {
682682

683683
bool Passed = true;
684684

685-
// Many cases currently fail on Windows before this driver version.
686-
if (!esimd_test::isGPUDriverGE(Q, esimd_test::GPUDriverOS::Windows, "26957",
687-
"101.4824", false))
685+
// Many cases currently fail before this driver version.
686+
if (!esimd_test::isGPUDriverGE(Q, esimd_test::GPUDriverOS::LinuxAndWindows,
687+
"26957", "101.4824", false))
688688
return Passed;
689689

690690
// Test block_store() from SLM that doesn't use the mask is implemented

0 commit comments

Comments
 (0)