From 44d5742aa97814cacd500931f7d4f7b8d2dfe6fa Mon Sep 17 00:00:00 2001 From: Lorenzo Van Munoz <66997677+lxvm@users.noreply.github.com> Date: Thu, 22 Feb 2024 11:21:58 -0500 Subject: [PATCH] Update introduction.md no trivial batching --- docs/src/tutorials/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.