From 808f44eaedee98cb2cfcd6511c81224238870693 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Thu, 27 Mar 2025 00:31:29 +0000 Subject: [PATCH 1/3] CompatHelper: bump compat for ForwardDiff to 1, (keep existing compat) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 994ad83b2e..7195f57d99 100644 --- a/Project.toml +++ b/Project.toml @@ -39,7 +39,7 @@ DelimitedFiles = "1" DiffEqCallbacks = "4" FastPow = "0.1" FileIO = "1" -ForwardDiff = "0.10" +ForwardDiff = "0.10, 1" GPUArraysCore = "0.2" JSON = "0.21" KernelAbstractions = "0.9" From d0a8b205b709d30b156eb46518a08c7deba49403 Mon Sep 17 00:00:00 2001 From: Sven Berger Date: Thu, 27 Mar 2025 01:32:49 +0100 Subject: [PATCH 2/3] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7195f57d99..6e6cde1007 100644 --- a/Project.toml +++ b/Project.toml @@ -39,7 +39,7 @@ DelimitedFiles = "1" DiffEqCallbacks = "4" FastPow = "0.1" FileIO = "1" -ForwardDiff = "0.10, 1" +ForwardDiff = "1" GPUArraysCore = "0.2" JSON = "0.21" KernelAbstractions = "0.9" From 993125b4bdffad594608ef7cdf9fdb9e78f3b70c Mon Sep 17 00:00:00 2001 From: Sven Berger Date: Thu, 12 Jun 2025 15:20:28 +0000 Subject: [PATCH 3/3] relax tolerances --- test/general/smoothing_kernels.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/general/smoothing_kernels.jl b/test/general/smoothing_kernels.jl index 23c9c01b47..f8c2c3edef 100644 --- a/test/general/smoothing_kernels.jl +++ b/test/general/smoothing_kernels.jl @@ -86,7 +86,7 @@ # This should work with very tight tolerances @test isapprox(analytic_deriv, automatic_deriv, - rtol=5e-15, atol=2eps()) + rtol=5e-15, atol=4 * eps()) end end end