Skip to content

Commit

Permalink
[SYCL][ESIMD][E2E] Add Linux driver version requirement to block_stor…
Browse files Browse the repository at this point in the history
…e_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 <nick.sarnie@intel.com>
  • Loading branch information
sarnex authored Dec 2, 2023
1 parent 2c1859e commit 1dbee22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sycl/test-e2e/ESIMD/unified_memory_api/Inputs/block_store.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -682,9 +682,9 @@ bool test_block_store_local_acc_slm(queue Q) {

bool Passed = true;

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

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

0 comments on commit 1dbee22

Please sign in to comment.