From b1b44e6e773d84017ef72b6bebf2d47c5c0328e1 Mon Sep 17 00:00:00 2001 From: Konrad Kusiak Date: Wed, 8 May 2024 21:53:21 +0100 Subject: [PATCH] Added new test --- .../out_of_order_queue_status_memset.cpp | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 sycl/test-e2e/Basic/out_of_order_queue_status_memset.cpp diff --git a/sycl/test-e2e/Basic/out_of_order_queue_status_memset.cpp b/sycl/test-e2e/Basic/out_of_order_queue_status_memset.cpp new file mode 100644 index 0000000000000..ca2f9e861711e --- /dev/null +++ b/sycl/test-e2e/Basic/out_of_order_queue_status_memset.cpp @@ -0,0 +1,79 @@ +// RUN: %{build} -o %t.out +// RUN: %{run} %t.out + +// Test checks that queue::ext_oneapi_empty() returns status of the out-of-order +// queue. + +#include +#include +#include + +static void CheckArray(int *x, size_t buffer_size, int expected) { + for (size_t i = 0; i < buffer_size; ++i) { + assert(x[i] == expected); + } +} + +using namespace sycl; + +void TestFunc(queue &Q) { + static constexpr int Size = 100; + + assert(Q.ext_oneapi_empty() && "Queue is expected to be empty"); + + int *X = malloc_host(Size, Q); + int *Y = malloc_host(Size, Q); + + auto FillEv = Q.memset(X, 0, Size); + auto HostEv = Q.submit([&](handler &CGH) { + CGH.depends_on(FillEv); + auto HostTask = [=] { + for (int I = 0; I < Size; I++) + X[I] += 1; + }; + CGH.host_task(HostTask); + }); + auto MemCpyEv = Q.copy(X, Y, Size, {HostEv}); + constexpr int NumIter = 5; + for (int I = 0; I < NumIter; I++) { + Q.submit([&](handler &CGH) { + CGH.depends_on(MemCpyEv); + CGH.parallel_for( + sycl::range<1>(Size / NumIter), + [=](sycl::id<1> WI) { Y[WI + I * Size / NumIter] *= 2; }); + }); + } + + // Wait a bit to give a chance for tasks to complete. + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + + // We expect that all submitted tasks are finished if ext_oneapi_empty is + // true. + if (Q.ext_oneapi_empty()) + CheckArray(Y, Size, 2); + + Q.wait(); + + // After synchronization queue must be empty. + assert(Q.ext_oneapi_empty() && "Queue is expected to be empty"); + + free(X, Q); + free(Y, Q); +} + +int main() { + queue Q; + + bool ExceptionThrown = false; + try { + TestFunc(Q); + } catch (sycl::exception &E) { + ExceptionThrown = true; + } + + // Feature is not supported for OpenCL, exception must be thrown. + if (Q.get_device().get_backend() == backend::opencl) + return ExceptionThrown ? 0 : -1; + + return 0; +}