Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -40,7 +41,8 @@ LuxTestUtils = "1"
MLDataDevices = "1"
NLsolve = "4.5.1"
NNlib = "0.9.17"
NonlinearSolve = "3.10.0"
NonlinearSolve = "3.10.0, 4"
NonlinearSolveBase "1.5"
OrdinaryDiffEq = "6.74.1"
Pkg = "1.10"
Random = "1.10"
Expand All @@ -51,7 +53,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]
Expand Down
3 changes: 2 additions & 1 deletion src/DeepEquilibriumNetworks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading