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
This behaviour is inconsistent (and prevents use of similar):
alpha =T(2.0)
beta =T(0.0)
hA =rand(T, 4, 32)
hB =rand(T, 32)
m =33
hC =rand(T, m)
A =CLArray(hA)
B =CLArray(hB)
C =CLArray(hC)
isnan(sum(BLAS.gbmv!('N', m, 1, 2, alpha, A, B, beta, C))) # false
C[1] =NaNisnan(sum(BLAS.gbmv!('N', m, 1, 2, alpha, A, B, beta, C)) ) # true
hC[1] =NaNisnan(sum(BLAS.gbmv!('N', m, 1, 2, alpha, hA, hB, beta, hC))) # false
The text was updated successfully, but these errors were encountered:
This behaviour is inconsistent (and prevents use of
similar
):The text was updated successfully, but these errors were encountered: