From b97e6294f6ed89c3f437e470a59ff46b712d3ba2 Mon Sep 17 00:00:00 2001 From: Dmitry Vodopyanov Date: Wed, 31 Mar 2021 21:15:27 +0300 Subject: [PATCH] Disable some SYCL/Reduction tests on Windows OpenCL This patch disables some SYCL/Reduction tests because they fail sporadically in CI on Windows with OpenCL with exceeded time out (possible deadlock). --- SYCL/Reduction/reduction_nd_s0_rw.cpp | 4 ++++ SYCL/Reduction/reduction_nd_s1_rw.cpp | 4 ++++ SYCL/Reduction/reduction_usm.cpp | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/SYCL/Reduction/reduction_nd_s0_rw.cpp b/SYCL/Reduction/reduction_nd_s0_rw.cpp index 00be249c21..088d555c2b 100644 --- a/SYCL/Reduction/reduction_nd_s0_rw.cpp +++ b/SYCL/Reduction/reduction_nd_s0_rw.cpp @@ -6,6 +6,10 @@ // This test performs basic checks of parallel_for(nd_range, reduction, func) // with reductions initialized with 0-dimensional read_write accessor. +// This test fails with exceeded time out on Windows with OpenCL, temporarily +// disabling +// UNSUPPORTED: windows && opencl + #include "reduction_utils.hpp" #include #include diff --git a/SYCL/Reduction/reduction_nd_s1_rw.cpp b/SYCL/Reduction/reduction_nd_s1_rw.cpp index b24dedec52..b3fb995883 100644 --- a/SYCL/Reduction/reduction_nd_s1_rw.cpp +++ b/SYCL/Reduction/reduction_nd_s1_rw.cpp @@ -7,6 +7,10 @@ // with reductions initialized with 1-dimensional read_write accessor // accessing 1 element buffer. +// This test fails with exceeded time out on Windows with OpenCL, temporarily +// disabling +// UNSUPPORTED: windows && opencl + #include "reduction_utils.hpp" #include #include diff --git a/SYCL/Reduction/reduction_usm.cpp b/SYCL/Reduction/reduction_usm.cpp index de780d93b0..6546f4b0e6 100644 --- a/SYCL/Reduction/reduction_usm.cpp +++ b/SYCL/Reduction/reduction_usm.cpp @@ -18,6 +18,10 @@ // This test performs basic checks of parallel_for(nd_range, reduction, func) // with reductions initialized with USM var. +// This test fails with exceeded time out on Windows with OpenCL, temporarily +// disabling +// UNSUPPORTED: windows && opencl + #include "reduction_utils.hpp" #include #include