Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
This library is a component package of the DifferentialEquations.jl ecosystem. It includes
functionality for making use of GPUs in the differential equation solvers.


## The two ways to accelerate ODE solvers with GPUs

There are two very different ways that one can
Expand Down
4 changes: 2 additions & 2 deletions src/ensemblegpukernel/integrators/integrator_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ end
callback::DiffEqGPU.GPUContinuousCallback,
counter) where {AlgType <: GPUODEAlgorithm,
IIP, S, T}
event_occurred, interp_index, prev_sign, prev_sign_index, event_idx = DiffEqBase.determine_event_occurrence(
event_occurred, interp_index, prev_sign, prev_sign_index, event_idx = DiffEqBase.determine_event_occurance(
integrator,
callback,
counter)
Expand Down Expand Up @@ -360,7 +360,7 @@ end
end

# interp_points = 0 or equivalently nothing
@inline function DiffEqBase.determine_event_occurrence(
@inline function DiffEqBase.determine_event_occurance(
integrator::DiffEqBase.AbstractODEIntegrator{
AlgType,
IIP,
Expand Down
Loading