Skip to content

Commit e2bc6eb

Browse files
committed
up
1 parent 1099009 commit e2bc6eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/model_simulation/sde_simulation_performance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [Advice for performant SDE simulations](@id sde_simulation_performance)
2-
While there exist relatively straightforward approaches to manage performance for [ODE](@ref ode_simulation_performance) and [Jump](@ref ref) simulations, this is generally not the case for SDE simulations. Below, we briefly describe some options. However, as one starts to investigate these, one quickly reaches what is (or could be) active areas of research.
2+
While there exist relatively straightforward approaches to manage performance for [ODE](@ref ode_simulation_performance) and jump simulations, this is generally not the case for SDE simulations. Below, we briefly describe some options. However, as one starts to investigate these, one quickly reaches what is (or could be) active areas of research.
33

44
## [SDE solver selection](@id sde_simulation_performance_solvers)
55
We have previously described how [ODE solver selection](@ref ode_simulation_performance_solvers) can impact simulation performance. Again, it can be worthwhile to investigate solver selection's impact on performance for SDE simulations. Throughout this documentation, we generally use the `STrapezoid` solver as the default choice. However, if the `DifferentialEquations` package is loaded
@@ -25,7 +25,7 @@ Which backend package you should use depends on your available hardware, with th
2525

2626
Next, we create the `SDEProblem` which we wish to simulate. Like for ODEs, we ensure that all vectors are [static vectors](https://github.com/JuliaArrays/StaticArrays.jl) and that all values are `Float32`s. Here we prepare the parallel simulations of a simple [birth-death process](@ref basic_CRN_library_bd).
2727
```@example sde_simulation_performance_gpu
28-
using Catalyst
28+
using Catalyst, StochasticDiffEq, StaticArrays
2929
bd_model = @reaction_network begin
3030
(p,d), 0 <--> X
3131
end

0 commit comments

Comments
 (0)