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 Mar 12, 2021. It is now read-only.
using CuArrays
xs =cu(rand(10,3,7))
findmin(xs, dims=1)
This simple script blows up with a kernel exception. Logs from running this with julia -g2 are in this gist. This only happens when dims=1, other dims look fine.
The offending code is in findfirst; somehow only the first row of indices is populated; the other two are filled with typemax(Int) after kernel is run.