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
BFMap fails without good debugging information when trying to use half precision floats.
Minimal example:
from bifrost import map as BFMap
import numpy as np
import traceback
for dtype in ['f8','f4','f2','i8','i4','i2']:
print("Using dtype",dtype)
try:
A = BFArray(np.arange(2000,dtype=dtype),space='cuda')
B = BFArray(np.arange(2000,dtype=dtype),space='cuda')
C = BFArray(np.arange(2000,dtype=dtype),space='cuda')
BFMap("""C(i)=A(i)*B(i)""",{'C':C,'B':B,'A':A},axis_names=('i'),shape=(2000,))
out = C.copy('system')
except Exception:
print(traceback.format_exc())```
The text was updated successfully, but these errors were encountered:
BFMap fails without good debugging information when trying to use half precision floats.
Minimal example:
The text was updated successfully, but these errors were encountered: