From 84a17fa32c0868d6a7ba6be5d8d8f1f4bbcd89cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Sat, 1 Feb 2025 19:42:03 +0000 Subject: [PATCH] [Test] Skip (again) CUDA integration tests when they are known to fail --- test/integration/cuda.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/integration/cuda.jl b/test/integration/cuda.jl index 1a95de9b62..782e6d4777 100644 --- a/test/integration/cuda.jl +++ b/test/integration/cuda.jl @@ -18,9 +18,9 @@ function square!(x, y) end # https://github.com/EnzymeAD/Reactant.jl/issues/614 -const skip_non_cuda_tests = true +const skip_non_cuda_tests = v"1.11.0" <= VERSION < v"1.11.4" -@static if !Sys.isapple() +@static if !Sys.isapple() || !skip_non_cuda_tests @testset "Square Kernel" begin oA = collect(1:1:64) A = Reactant.to_rarray(oA) @@ -43,7 +43,7 @@ function sin!(x, y) return nothing end -@static if !Sys.isapple() +@static if !Sys.isapple() || !skip_non_cuda_tests @testset "Sin Kernel" begin oA = collect(Float64, 1:1:64) A = Reactant.to_rarray(oA) @@ -67,7 +67,7 @@ function smul!(x) return nothing end -@static if !Sys.isapple() +@static if !Sys.isapple() || !skip_non_cuda_tests @testset "Constant Op Kernel" begin oA = collect(1:1:64) A = Reactant.to_rarray(oA)