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
{{ message }}
This repository was archived by the owner on May 27, 2021. It is now read-only.
using CuArrays
A =CuArray{Float64}(undef, 1, 1)
A[1:1, 1:1] .=0
Execute with julia --check-bounds=yes (cfr. tests)
Reason: unsupported call to the Julia runtime (call to jl_gc_pool_alloc)
Stacktrace:
[1] throw_boundserror at subarray.jl:43
[2] checkbounds at abstractarray.jl:449
[3] setindex! at subarray.jl:268
[4] _setindex! at abstractarray.jl:1050
[5] setindex! at abstractarray.jl:1020
[6] #23 at /home/tbesard/Julia/GPUArrays/src/broadcast.jl:50
CUDAnative should catch calls to throw_boundserror and null them, which for some reason doesn't seem to be happening for this example. This is the reason tests have been failing on -dev for a while.