File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ function square!(x, y)
18
18
end
19
19
20
20
# https://github.com/EnzymeAD/Reactant.jl/issues/614
21
- const skip_non_cuda_tests = true
21
+ const skip_non_cuda_tests = v " 1.11.0 " <= VERSION < v " 1.11.4 "
22
22
23
- @static if ! Sys. isapple ()
23
+ @static if ! Sys. isapple () || ! skip_non_cuda_tests
24
24
@testset " Square Kernel" begin
25
25
oA = collect (1 : 1 : 64 )
26
26
A = Reactant. to_rarray (oA)
@@ -43,7 +43,7 @@ function sin!(x, y)
43
43
return nothing
44
44
end
45
45
46
- @static if ! Sys. isapple ()
46
+ @static if ! Sys. isapple () || ! skip_non_cuda_tests
47
47
@testset " Sin Kernel" begin
48
48
oA = collect (Float64, 1 : 1 : 64 )
49
49
A = Reactant. to_rarray (oA)
@@ -67,7 +67,7 @@ function smul!(x)
67
67
return nothing
68
68
end
69
69
70
- @static if ! Sys. isapple ()
70
+ @static if ! Sys. isapple () || ! skip_non_cuda_tests
71
71
@testset " Constant Op Kernel" begin
72
72
oA = collect (1 : 1 : 64 )
73
73
A = Reactant. to_rarray (oA)
You can’t perform that action at this time.
0 commit comments