Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle inhomogeneous parameters using a Tuple of Vectors #2231

Merged
merged 19 commits into from
Sep 14, 2023
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
26 changes: 26 additions & 0 deletions src/parameters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,29 @@
xs,
toparam) |> esc
end

function split_parameters_by_type(ps)
by = let set = Dict{Any, Int}(), counter = Ref(1)
x -> begin
t = typeof(x)
get!(set, typeof(x)) do
if t == Float64
1

Check warning on line 71 in src/parameters.jl

View check run for this annotation

Codecov / codecov/patch

src/parameters.jl#L65-L71

Added lines #L65 - L71 were not covered by tests
else
counter[] += 1

Check warning on line 73 in src/parameters.jl

View check run for this annotation

Codecov / codecov/patch

src/parameters.jl#L73

Added line #L73 was not covered by tests
end
end
end
end
idxs = by.(ps)
split_idxs = [Int[]]
for (i, idx) in enumerate(idxs)
if idx > length(split_idxs)
push!(split_idxs, Int[])

Check warning on line 82 in src/parameters.jl

View check run for this annotation

Codecov / codecov/patch

src/parameters.jl#L78-L82

Added lines #L78 - L82 were not covered by tests
end
push!(split_idxs[idx], i)
end
tighten_types = x -> identity.(x)
split_ps = tighten_types.(Base.Fix1(getindex, ps).(split_idxs))
(split_ps...,), split_idxs

Check warning on line 88 in src/parameters.jl

View check run for this annotation

Codecov / codecov/patch

src/parameters.jl#L84-L88

Added lines #L84 - L88 were not covered by tests
end
37 changes: 31 additions & 6 deletions src/systems/diffeqs/abstractodesystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
nothing,
isdde = false,
has_difference = false,
split_parameters = false,
kwargs...)
if isdde
eqs = delay_to_function(sys)
Expand Down Expand Up @@ -151,6 +152,9 @@
build_function(rhss, ddvs, u, p, t; postprocess_fbody = pre,
states = sol_states,
kwargs...)
elseif split_parameters
build_function(rhss, u, p..., t; postprocess_fbody = pre, states = sol_states,

Check warning on line 156 in src/systems/diffeqs/abstractodesystem.jl

View check run for this annotation

Codecov / codecov/patch

src/systems/diffeqs/abstractodesystem.jl#L156

Added line #L156 was not covered by tests
ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved
kwargs...)
else
build_function(rhss, u, p, t; postprocess_fbody = pre, states = sol_states,
kwargs...)
Expand Down Expand Up @@ -325,15 +329,23 @@
checkbounds = false,
sparsity = false,
analytic = nothing,
split_parameters = false,
kwargs...) where {iip, specialize}
f_gen = generate_function(sys, dvs, ps; expression = Val{eval_expression},
expression_module = eval_module, checkbounds = checkbounds,
expression_module = eval_module, checkbounds = checkbounds, split_parameters,
kwargs...)
f_oop, f_iip = eval_expression ?
(drop_expr(@RuntimeGeneratedFunction(eval_module, ex)) for ex in f_gen) :
f_gen
f(u, p, t) = f_oop(u, p, t)
f(du, u, p, t) = f_iip(du, u, p, t)
if split_parameters
g(u, p, t) = f_oop(u, p..., t)
g(du, u, p, t) = f_iip(du, u, p..., t)
f = g

Check warning on line 343 in src/systems/diffeqs/abstractodesystem.jl

View check run for this annotation

Codecov / codecov/patch

src/systems/diffeqs/abstractodesystem.jl#L341-L343

Added lines #L341 - L343 were not covered by tests
else
k(u, p, t) = f_oop(u, p, t)
k(du, u, p, t) = f_iip(du, u, p, t)
ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved
f = k
end

if specialize === SciMLBase.FunctionWrapperSpecialize && iip
if u0 === nothing || p === nothing || t === nothing
Expand Down Expand Up @@ -686,6 +698,7 @@
parammap;
use_union = false,
tofloat = !use_union,
split_parameters = false,
symbolic_u0 = false)
eqs = equations(sys)
dvs = states(sys)
Expand All @@ -698,7 +711,7 @@
if symbolic_u0
u0 = varmap_to_vars(u0map, dvs; defaults = defs, tofloat = false, use_union = false)
else
u0 = varmap_to_vars(u0map, dvs; defaults = defs, tofloat = true)
u0 = varmap_to_vars(u0map, dvs; defaults = defs, tofloat = !split_parameters)
end
p = varmap_to_vars(parammap, ps; defaults = defs, tofloat, use_union)
p = p === nothing ? SciMLBase.NullParameters() : p
Expand All @@ -716,13 +729,24 @@
use_union = false,
tofloat = !use_union,
symbolic_u0 = false,
split_parameters = false,
kwargs...)
eqs = equations(sys)
dvs = states(sys)
ps = parameters(sys)
iv = get_iv(sys)

u0, p, defs = get_u0_p(sys, u0map, parammap; tofloat, use_union, symbolic_u0)
u0, p, defs = get_u0_p(sys,
u0map,
parammap;
tofloat,
use_union,
symbolic_u0,
split_parameters)
if split_parameters
p, split_idxs = split_parameters_by_type(p)
ps = Base.Fix1(getindex, parameters(sys)).(split_idxs)

Check warning on line 748 in src/systems/diffeqs/abstractodesystem.jl

View check run for this annotation

Codecov / codecov/patch

src/systems/diffeqs/abstractodesystem.jl#L747-L748

Added lines #L747 - L748 were not covered by tests
end

if implicit_dae && du0map !== nothing
ddvs = map(Differential(iv), dvs)
Expand All @@ -739,7 +763,8 @@
f = constructor(sys, dvs, ps, u0; ddvs = ddvs, tgrad = tgrad, jac = jac,
checkbounds = checkbounds, p = p,
linenumbers = linenumbers, parallel = parallel, simplify = simplify,
sparse = sparse, eval_expression = eval_expression, kwargs...)
sparse = sparse, eval_expression = eval_expression, split_parameters,
kwargs...)
implicit_dae ? (f, du0, u0, p) : (f, u0, p)
end

Expand Down
4 changes: 4 additions & 0 deletions src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,10 @@

hasdefault(v) = hasmetadata(v, Symbolics.VariableDefaultValue)
getdefault(v) = value(getmetadata(v, Symbolics.VariableDefaultValue))
function getdefaulttype(v)
def = value(getmetadata(unwrap(v), Symbolics.VariableDefaultValue, nothing))
def === nothing ? Float64 : typeof(def)

Check warning on line 248 in src/utils.jl

View check run for this annotation

Codecov / codecov/patch

src/utils.jl#L246-L248

Added lines #L246 - L248 were not covered by tests
end
function setdefault(v, val)
val === nothing ? v : setmetadata(v, Symbolics.VariableDefaultValue, value(val))
end
Expand Down
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ using SafeTestsets, Test
@safetestset "JumpSystem Test" include("jumpsystem.jl")
@safetestset "Constraints Test" include("constraints.jl")
@safetestset "Reduction Test" include("reduction.jl")
@safetestset "Split Parameters Test" include("split_parameters.jl")
@safetestset "ODAEProblem Test" include("odaeproblem.jl")
@safetestset "Components Test" include("components.jl")
@safetestset "Model Parsing Test" include("model_parsing.jl")
Expand Down
31 changes: 31 additions & 0 deletions test/split_parameters.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
using ModelingToolkit, Test
using ModelingToolkitStandardLibrary.Blocks
using OrdinaryDiffEq

dt = 4e-4
t_end = 10.0
time = 0:dt:t_end
x = @. time^2 + 1.0

@parameters t
D = Differential(t)

vars = @variables y(t)=1 dy(t)=0 ddy(t)=0
@named src = SampledData(; data = Float64[], dt)
@named int = Integrator()

eqs = [y ~ src.output.u
D(y) ~ dy
D(dy) ~ ddy
connect(src.output, int.input)]

@named sys = ODESystem(eqs, t, vars, []; systems = [int, src])
s = complete(sys)
sys = structural_simplify(sys)

prob = ODEProblem(sys, [], (0.0, t_end), [s.src.data => x]; split_parameters = true)
@test prob.p isa Tuple{Vector{Float64}, Vector{Int}, Vector{Vector{Float64}}}
@time sol = solve(prob, ImplicitEuler());
prob2 = ODEProblem(sys, [], (0.0, t_end), [s.src.data => x]; to_float = false)
@test prob2.p isa Vector{Union{Float64, Int64, Vector{Float64}}}
@time sol2 = solve(prob2, ImplicitEuler());
Loading