From 0d02571ebc83de8bb423b6fe658eff42c2177547 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 23 Mar 2025 18:11:19 -0100 Subject: [PATCH 1/5] Bump compats --- Project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index af197535..3769eb21 100644 --- a/Project.toml +++ b/Project.toml @@ -40,7 +40,7 @@ LuxTestUtils = "1" MLDataDevices = "1" NLsolve = "4.5.1" NNlib = "0.9.17" -NonlinearSolve = "3.10.0" +NonlinearSolve = "3.10.0, 4" OrdinaryDiffEq = "6.74.1" Pkg = "1.10" Random = "1.10" @@ -51,7 +51,7 @@ StableRNGs = "1.0.2" Static = "1.1.1" SteadyStateDiffEq = "2.3.2" Test = "1.10" -Zygote = "0.6.69" +Zygote = "0.6.69, 0.7" julia = "1.10" [extras] From 7dd0e8bb233e0be048cb55d78ad9b1acc932edd1 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 23 Mar 2025 18:22:38 -0100 Subject: [PATCH 2/5] Update DeepEquilibriumNetworks.jl --- src/DeepEquilibriumNetworks.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/DeepEquilibriumNetworks.jl b/src/DeepEquilibriumNetworks.jl index 382c7439..fbaf705c 100644 --- a/src/DeepEquilibriumNetworks.jl +++ b/src/DeepEquilibriumNetworks.jl @@ -4,7 +4,8 @@ using ADTypes: AutoFiniteDiff, AutoForwardDiff, AutoZygote using ChainRulesCore: ChainRulesCore using CommonSolve: solve using ConcreteStructs: @concrete -using DiffEqBase: DiffEqBase, AbsNormTerminationMode +using DiffEqBase +using NonlinearSolveBase: AbsNormTerminationMode using FastClosures: @closure using Random: Random, AbstractRNG, randn! using SciMLBase: SciMLBase, AbstractNonlinearAlgorithm, AbstractODEAlgorithm, From ec3e5f50b75c594be67f806bedff4e5cf1ea458b Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 23 Mar 2025 18:23:52 -0100 Subject: [PATCH 3/5] Update Project.toml --- Project.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Project.toml b/Project.toml index 3769eb21..7bf78773 100644 --- a/Project.toml +++ b/Project.toml @@ -13,6 +13,7 @@ FastClosures = "9aa1b823-49e4-5ca5-8b0f-3971ec8bab6a" Lux = "b2108857-7c20-44ae-9111-449ecde12c47" LuxCore = "bb33d45b-7691-41d6-9220-0943567d0623" NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd" +NonlinearSolveBase = "be0214bd-f91f-a760-ac4e-3421ce2b2da0" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" SciMLSensitivity = "1ed8b502-d754-442c-8d5d-10ac956f44a1" @@ -41,6 +42,7 @@ MLDataDevices = "1" NLsolve = "4.5.1" NNlib = "0.9.17" NonlinearSolve = "3.10.0, 4" +NonlinearSolveBase "1.5" OrdinaryDiffEq = "6.74.1" Pkg = "1.10" Random = "1.10" From c1be9cc9c12d8fbf9d95d904a302e495609058f3 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 23 Mar 2025 18:34:18 -0100 Subject: [PATCH 4/5] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7bf78773..1f83974f 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ MLDataDevices = "1" NLsolve = "4.5.1" NNlib = "0.9.17" NonlinearSolve = "3.10.0, 4" -NonlinearSolveBase "1.5" +NonlinearSolveBase = "1.5" OrdinaryDiffEq = "6.74.1" Pkg = "1.10" Random = "1.10" From 17b9f1c08d6f2a6245ae8e447035d2bf8e9d2c88 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 23 Mar 2025 19:13:49 -0100 Subject: [PATCH 5/5] Update DeepEquilibriumNetworks.jl --- src/DeepEquilibriumNetworks.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DeepEquilibriumNetworks.jl b/src/DeepEquilibriumNetworks.jl index fbaf705c..64095f19 100644 --- a/src/DeepEquilibriumNetworks.jl +++ b/src/DeepEquilibriumNetworks.jl @@ -2,9 +2,9 @@ module DeepEquilibriumNetworks using ADTypes: AutoFiniteDiff, AutoForwardDiff, AutoZygote using ChainRulesCore: ChainRulesCore -using CommonSolve: solve +using CommonSolve: solve, init using ConcreteStructs: @concrete -using DiffEqBase +using DiffEqBase: DiffEqBase using NonlinearSolveBase: AbsNormTerminationMode using FastClosures: @closure using Random: Random, AbstractRNG, randn!