Skip to content

Commit b55f9a9

Browse files
committed
rebase
1 parent 3482321 commit b55f9a9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/pages.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ pages = Any[
2929
"model_simulation/simulation_structure_interfacing.md",
3030
"model_simulation/TOBEREMOVED_advanced_simulations.md",# Monte Carlo/Ensemble simulations.
3131
# Stochastic simulation statistical analysis.
32+
"04_model_simulation/06_ode_simulation_performance.md",
3233
# ODE Performance considerations/advice.
3334
# SDE Performance considerations/advice.
3435
# Jump Performance considerations/advice.

docs/src/catalyst_applications/ode_simulation_performance.md renamed to docs/src/04_model_simulation/ode_simulation_performance.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ oprob = ODEProblem(mm_model, u0, tspan, p)
289289
nothing # hide
290290
```
291291
When we declare our `prob_func` and `EnsembleProblem` we need to ensure that the updated `ODEProblem` uses `Float32`:
292-
```@example ode_simulation_performance_5function prob_func(prob, i, repeat)
292+
```@example ode_simulation_performance_5
293+
function prob_func(prob, i, repeat)
293294
return remake(prob; p = [:kP => 0.0001f0*i])
294295
end
295296
eprob = EnsembleProblem(oprob; prob_func = prob_func)

0 commit comments

Comments
 (0)