diff --git a/docs/src/tutorials/introduction.md b/docs/src/tutorials/introduction.md index e06728f..92d79c6 100644 --- a/docs/src/tutorials/introduction.md +++ b/docs/src/tutorials/introduction.md @@ -392,8 +392,8 @@ Now, let's compare the performance of the batch and non-batch modes ``` ```@example introduction -solve(exprob, Koopman(), batch = 0, quadalg = CubaSUAVE()) -@time solve(exprob, Koopman(), batch = 0, quadalg = CubaSUAVE()) +solve(exprob, Koopman(), quadalg = CubaSUAVE()) +@time solve(exprob, Koopman(), quadalg = CubaSUAVE()) ``` It is also possible to parallelize across the GPU. However, one must be careful of the limitations of ensemble solutions with the GPU. Please refer to [DiffEqGPU.jl](https://github.com/SciML/DiffEqGPU.jl) for details.