SciML / DiffEqGPU.jl

GPU-acceleration routines for DifferentialEquations.jl and the broader SciML scientific machine learning ecosystem
https://docs.sciml.ai/DiffEqGPU/stable/
MIT License
274 stars 28 forks source link

Fix dynamic allocation overflow in GPUs for higher thread count #207

Closed utkarsh530 closed 1 year ago

utkarsh530 commented 1 year ago

Fixes #206

This fixes when dynamic allocation overflow not using Continuous callbacks.

utkarsh530 commented 1 year ago

@inline helped to remove allocations when using interpolation of the integrator.

codecov[bot] commented 1 year ago

Codecov Report

Merging #207 (76f1712) into master (dfb231f) will not change coverage. The diff coverage is 0.00%.

@@          Coverage Diff           @@
##           master    #207   +/-   ##
======================================
  Coverage    0.00%   0.00%           
======================================
  Files           9       9           
  Lines        1990    1990           
======================================
  Misses       1990    1990           
Impacted Files Coverage Δ
src/integrators/integrator_utils.jl 0.00% <0.00%> (ø)
src/integrators/types.jl 0.00% <0.00%> (ø)

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more

utkarsh530 commented 1 year ago

Fixes #205