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 has been archived by the owner on Mar 12, 2021. It is now read-only.
using CUDArt, CUBLAS
a =rand( 10 );
d_a =CudaArray( a );
# All this works fine
CUBLAS.iamin( d_a );
CUBLAS.iamin( d_a );
CUBLAS.iamin( d_a );
...
CUBLAS.iamin( d_a );
# But after doingdevices(dev->true) do devlist
...end
CUBLAS.iamin( d_a ); # Gives a segmentation fault
This does not happen with other functions such as axpy!, but it does happen with iamax and asum
Is this a bug or am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This does not happen with other functions such as
axpy!
, but it does happen withiamax
andasum
Is this a bug or am I doing something wrong?
The text was updated successfully, but these errors were encountered: