From 055b3ec5bf8fd8b0909d1c447a2b4675d376fed8 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Sat, 21 Mar 2026 10:45:52 +0100 Subject: [PATCH] Use OrdinaryDiffEqCore in second readme example OrdinaryDiffEq is way too much for this example since you aren't even using it, just need the EnsembleProblem type. And realistically most users will be pasting this into a REPL which will ask them to install certain packages anyway. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38074b61..ac352c6d 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ sol = solve(prob, Tsit5()) ## Example of Parameter-Parallelism with GPU Ensemble Methods ```julia -using DiffEqGPU, CUDA, OrdinaryDiffEq, StaticArrays +using DiffEqGPU, CUDA, OrdinaryDiffEqCore, StaticArrays function lorenz(u, p, t) σ = p[1]