Skip to content

Commit

Permalink
Temporarily remove Enzyme tests for Julia 1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
omlins authored Oct 14, 2024
1 parent 6a06005 commit 0913602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ParallelKernel/test_parallel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ import Enzyme
@test @prettystring(1, @parallel ∇=(V.x->V̄.x, V.y->V̄.y) f!(V.x, V.y, a)) == "@parallel configcall = f!(V.x, V.y, a) ParallelStencil.ParallelKernel.AD.autodiff_deferred!(Enzyme.Reverse, f!, Enzyme.DuplicatedNoNeed(V.x, V̄.x), Enzyme.DuplicatedNoNeed(V.y, V̄.y), Enzyme.Const(a))"
end;
@testset "AD.autodiff_deferred!" begin
@static if $package == $PKG_THREADS
@static if $package == $PKG_THREADS && VERSION.minor < 11 # TODO: remove restriction to Julia version < 1.11 once Enzyme support is available.
N = 16
a = 6.5
A = @rand(N)
Expand Down

0 comments on commit 0913602

Please sign in to comment.