Skip to content

Commit

Permalink
test: temporarily mark the test as broken
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Dec 4, 2024
1 parent 7b714c1 commit 266b733
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
8 changes: 2 additions & 6 deletions test/enzyme_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,10 @@ export generic_loss_function, compute_enzyme_gradient, compute_zygote_gradient,
end

@testitem "Enzyme Integration" setup=[EnzymeTestSetup, SharedTestSetup] tags=[
:autodiff, :enzyme] begin
:autodiff, :enzyme] timeout=3600 begin
rng = StableRNG(12345)

@testset "$mode" for (mode, aType, dev, ongpu) in MODES
# TODO: Currently all the tests are run on CPU. We should eventually add tests for
# CUDA and AMDGPU.
ongpu && continue

@testset "[$(i)] $(nameof(typeof(model)))" for (i, (model, x)) in enumerate(MODELS_LIST)
Expand All @@ -106,15 +104,13 @@ end
end
end

@testitem "Enzyme Integration ComponentArray" setup=[EnzymeTestSetup, SharedTestSetup] tags=[
@testitem "Enzyme Integration ComponentArray" setup=[EnzymeTestSetup, SharedTestSetup] timeout=3600 tags=[
:autodiff, :enzyme] begin
using ComponentArrays

rng = StableRNG(12345)

@testset "$mode" for (mode, aType, dev, ongpu) in MODES
# TODO: Currently all the tests are run on CPU. We should eventually add tests for
# CUDA and AMDGPU.
ongpu && continue

@testset "[$(i)] $(nameof(typeof(model)))" for (i, (model, x)) in enumerate(MODELS_LIST)
Expand Down
18 changes: 11 additions & 7 deletions test/layers/basic_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,19 @@ end
)
x = randn(SVector{N, Float64})

grad1 = ForwardDiff.gradient(ComponentArray(ps)) do ps
sumabs2first(d, x, ps, (;))
end
broken = pkgversion(Enzyme) v"0.13.18"

@test begin
grad1 = ForwardDiff.gradient(ComponentArray(ps)) do ps
sumabs2first(d, x, ps, (;))
end

grad2 = Enzyme.gradient(
Enzyme.Reverse, sumabs2first, Const(d), Const(x), ps, Const((;))
)[3]
grad2 = Enzyme.gradient(
Enzyme.Reverse, sumabs2first, Const(d), Const(x), ps, Const((;))
)[3]

@test maximum(abs, grad1 .- ComponentArray(grad2)) < 1e-6
maximum(abs, grad1 .- ComponentArray(grad2)) < 1e-6
end broken=broken
end
end

Expand Down

0 comments on commit 266b733

Please sign in to comment.