From 2de1435e57db805227c9e2cc5f3bfc53c4e1ef0b Mon Sep 17 00:00:00 2001 From: mmoadeli Date: Thu, 6 Jun 2024 11:05:48 +0100 Subject: [PATCH] [SYCL][TEST-E2E] Disallow `dep_events.cpp` test built for CUDA backend to run on Windows (#13957) [Windows doesn't support cudaMemPrefetchAsync()](https://github.com/TimDettmers/bitsandbytes/issues/453) which is used in the call to `prefetch` in the test. [urEnqueueUSMPrefetch](https://github.com/oneapi-src/unified-runtime/blob/c0c607c3a88933b4c5c20a0aca4539781c678411/source/adapters/cuda/enqueue.cpp#L1629) is also commented with a note for not having the support for CUDA on Windows. --- sycl/test-e2e/USM/dep_events.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sycl/test-e2e/USM/dep_events.cpp b/sycl/test-e2e/USM/dep_events.cpp index 20ee05a309c7a..01f80564bc144 100644 --- a/sycl/test-e2e/USM/dep_events.cpp +++ b/sycl/test-e2e/USM/dep_events.cpp @@ -6,6 +6,7 @@ // //===----------------------------------------------------------------------===// // REQUIRES: aspect-usm_shared_allocations +// UNSUPPORTED: cuda && windows // RUN: %{build} -o %t1.out // RUN: %{run} %t1.out