diff --git a/sycl/test-e2e/AtomicRef/atomic_memory_order_acq_rel.cpp b/sycl/test-e2e/AtomicRef/atomic_memory_order_acq_rel.cpp index d04bdd7ff3f39..ef6bde90ab892 100644 --- a/sycl/test-e2e/AtomicRef/atomic_memory_order_acq_rel.cpp +++ b/sycl/test-e2e/AtomicRef/atomic_memory_order_acq_rel.cpp @@ -3,8 +3,6 @@ // RUN: %GPU_RUN_PLACEHOLDER %t.out // RUN: %ACC_RUN_PLACEHOLDER %t.out -// https://github.com/intel/llvm/issues/8847 -// REQUIRES: TEMPORARY_DISABLED // NOTE: Tests fetch_add for acquire and release memory ordering. #include "atomic_memory_order.h" @@ -22,7 +20,7 @@ template void test_acquire_global() { queue q; { buffer error_buf(&error, 1); - buffer val_buf(val, 1); + buffer val_buf(val, 2); q.submit([&](handler &cgh) { auto error = @@ -66,7 +64,7 @@ template void test_acquire_local() { queue q; { buffer error_buf(&error, 1); - buffer val_buf(val, 1); + buffer val_buf(val, 2); q.submit([&](handler &cgh) { auto error = @@ -113,7 +111,7 @@ template void test_release_global() { queue q; { buffer error_buf(&error, 1); - buffer val_buf(val, 1); + buffer val_buf(val, 2); q.submit([&](handler &cgh) { auto error = @@ -157,7 +155,7 @@ template void test_release_local() { queue q; { buffer error_buf(&error, 1); - buffer val_buf(val, 1); + buffer val_buf(val, 2); q.submit([&](handler &cgh) { auto error =