You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Julia 1.11 AbstractVectorOfArray indexing deprecation warnings
Changes all instances of sol[i] to sol.u[i] and asol[i] to asol.u[i]
across test files to resolve deprecation warnings where:
Base.getindex(VA::AbstractVectorOfArray{T,N,A}, I::Int) is deprecated
in favor of VA.u[I].
Fixed in 12 test files:
- test/ensemblegpuarray.jl
- test/distributed_multi_gpu.jl
- test/gpu_kernel_de/gpu_ode_regression.jl
- test/gpu_kernel_de/gpu_sde_regression.jl
- test/gpu_kernel_de/gpu_sde_convergence.jl
- test/gpu_kernel_de/finite_diff.jl
- test/gpu_kernel_de/gpu_ode_continuous_callbacks.jl
- test/gpu_kernel_de/gpu_ode_discrete_callbacks.jl
- test/gpu_kernel_de/stiff_ode/gpu_ode_regression.jl
- test/gpu_kernel_de/stiff_ode/gpu_ode_continuous_callbacks.jl
- test/gpu_kernel_de/stiff_ode/gpu_ode_discrete_callbacks.jl
- test/gpu_kernel_de/stiff_ode/gpu_ode_mass_matrix.jl
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments