-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
Description
import numpy as np
from numpy_quaddtype import QuadPrecDType
a = np.zeros((18, 1), dtype=QuadPrecDType())
m = np.zeros((18, 1), dtype=np.bool)
m[3:-3] = True
v = np.ones(12, dtype=QuadPrecDType())
np.place(a, m, v)
print(a, m, v)never reaches the print in numpy-quaddtype==0.2.0.
@SwayamInSync has this been fixed since?