Skip to content

Commit 637715e

Browse files
Merge pull request #362 from SciML/ChrisRackauckas-patch-3
Fix master
2 parents 3c12fe8 + e1e3d78 commit 637715e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
This library is a component package of the DifferentialEquations.jl ecosystem. It includes
1313
functionality for making use of GPUs in the differential equation solvers.
1414

15+
1516
## The two ways to accelerate ODE solvers with GPUs
1617

1718
There are two very different ways that one can

src/ensemblegpukernel/integrators/integrator_utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ end
278278
callback::DiffEqGPU.GPUContinuousCallback,
279279
counter) where {AlgType <: GPUODEAlgorithm,
280280
IIP, S, T}
281-
event_occurred, interp_index, prev_sign, prev_sign_index, event_idx = DiffEqBase.determine_event_occurrence(
281+
event_occurred, interp_index, prev_sign, prev_sign_index, event_idx = DiffEqBase.determine_event_occurance(
282282
integrator,
283283
callback,
284284
counter)
@@ -360,7 +360,7 @@ end
360360
end
361361

362362
# interp_points = 0 or equivalently nothing
363-
@inline function DiffEqBase.determine_event_occurrence(
363+
@inline function DiffEqBase.determine_event_occurance(
364364
integrator::DiffEqBase.AbstractODEIntegrator{
365365
AlgType,
366366
IIP,

0 commit comments

Comments
 (0)