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
When running this slightly minified code from the quickstart guide:
import KernelAbstractions as KA
KA.@kernelfunctionmul2_kernel(A)
I = KA.@index(Global, Linear)
end
dev = KA.CPU()
A =ones(1024, 1024)
ev =mul2_kernel(dev, 64)(A, ndrange=size(A))
KA.synchronize(dev)
all(A .==2.0)
I get this exception (only on the CPU backend, the CUDA backend works):
When running this slightly minified code from the quickstart guide:
I get this exception (only on the CPU backend, the CUDA backend works):
These are the versions I'm running it with:
The text was updated successfully, but these errors were encountered: