diff --git a/sycl/test-e2e/Graph/Explicit/memadvise.cpp b/sycl/test-e2e/Graph/Explicit/memadvise.cpp index 93df1f2f4b3f1..11e0d6296290f 100644 --- a/sycl/test-e2e/Graph/Explicit/memadvise.cpp +++ b/sycl/test-e2e/Graph/Explicit/memadvise.cpp @@ -1,6 +1,9 @@ // RUN: %{build} -o %t.out // RUN: %if linux && (level_zero || cuda) %{ env SYCL_PI_TRACE=2 %{run} %t.out 2>&1 FileCheck %s %} %else %{ %{run} %t.out %} +// Mem advise command not supported for OpenCL +// UNSUPPORTED: opencl + // Since Mem advise is only a memory hint that doesn't // impact results but only performances, we verify // that a node is correctly added by checking PI function calls. diff --git a/sycl/test-e2e/Graph/Explicit/prefetch.cpp b/sycl/test-e2e/Graph/Explicit/prefetch.cpp index edf86fe11af85..8e0e6e15c292d 100644 --- a/sycl/test-e2e/Graph/Explicit/prefetch.cpp +++ b/sycl/test-e2e/Graph/Explicit/prefetch.cpp @@ -1,6 +1,9 @@ // RUN: %{build} -o %t.out // RUN: %if linux && (level_zero || cuda) %{ env SYCL_PI_TRACE=2 %{run} %t.out 2>&1 FileCheck %s %} %else %{ %{run} %t.out %} +// prefetch command not supported for OpenCL +// UNSUPPORTED: opencl + // Since Prefetch is only a memory hint that doesn't // impact results but only performances, we verify // that a node is correctly added by checking PI function calls diff --git a/sycl/test-e2e/Graph/RecordReplay/memadvise.cpp b/sycl/test-e2e/Graph/RecordReplay/memadvise.cpp index 84572510d9df3..a5b87f8143832 100644 --- a/sycl/test-e2e/Graph/RecordReplay/memadvise.cpp +++ b/sycl/test-e2e/Graph/RecordReplay/memadvise.cpp @@ -1,6 +1,9 @@ // RUN: %{build} -o %t.out // RUN: %if linux && (level_zero || cuda) %{ env SYCL_PI_TRACE=2 %{run} %t.out 2>&1 FileCheck %s %} %else %{ %{run} %t.out %} +// Mem advise command not supported for OpenCL +// UNSUPPORTED: opencl + // Since Mem advise is only a memory hint that doesn't // impact results but only performances, we verify // that a node is correctly added by checking PI function calls. diff --git a/sycl/test-e2e/Graph/RecordReplay/prefetch.cpp b/sycl/test-e2e/Graph/RecordReplay/prefetch.cpp index 1d07a72299a8b..dca297f7772b3 100644 --- a/sycl/test-e2e/Graph/RecordReplay/prefetch.cpp +++ b/sycl/test-e2e/Graph/RecordReplay/prefetch.cpp @@ -1,6 +1,9 @@ // RUN: %{build} -o %t.out // RUN: %if linux && (level_zero || cuda) %{ env SYCL_PI_TRACE=2 %{run} %t.out 2>&1 FileCheck %s %} %else %{ %{run} %t.out %} +// prefetch command not supported for OpenCL +// UNSUPPORTED: opencl + // Since Prefetch is only a memory hint that doesn't // impact results but only performances, we verify // that a node is correctly added by checking PI function calls