From fb533d2b06822d8a9b9d6a8c8e559ca350b1961d Mon Sep 17 00:00:00 2001 From: Samuel Omlin Date: Tue, 18 Jul 2023 21:03:25 +0200 Subject: [PATCH] set Enzyme runtime activity to true for threads by default --- test/ParallelKernel/test_parallel.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ParallelKernel/test_parallel.jl b/test/ParallelKernel/test_parallel.jl index 900b6b0f..b95502fe 100644 --- a/test/ParallelKernel/test_parallel.jl +++ b/test/ParallelKernel/test_parallel.jl @@ -92,7 +92,7 @@ end end @parallel configcall=f!(A, B, a) AD.autodiff_deferred!(Enzyme.Reverse, f!, DuplicatedNoNeed(A, Ā), DuplicatedNoNeed(B, B̄), Const(a)) Enzyme.autodiff_deferred(Enzyme.Reverse, g!, DuplicatedNoNeed(A_ref, Ā_ref), DuplicatedNoNeed(B_ref, B̄_ref), Const(a)) - #@test Array(Ā) ≈ Ā_ref # NOTE: this test does not pass when run with the package manager. + @test Array(Ā) ≈ Ā_ref @test Array(B̄) ≈ B̄_ref end end