Adafruit CircuitPython 8.0.0-beta.6 on 2022-12-21; Adafruit ItsyBitsy M4 Express with samd51g19
>>> ulab.__version__
'6.0.2-2D-c'
as well as "unix circuitpython" with the same ulab version
To Reproduce
import ulab.numpy as np
coeff = np.ones((6,6))
values = np.ones(6)
# next line prints array([6.0]) in ulab while python3 prints [6. 6. 6. 6. 6. 6.]
print(np.dot(values, coeff))
# eventually causes crash!
while True: x = np.dot(values, coeff)
Expected behavior
Would like behavior to match standard Python & not hardfault
Additional context
Is an output array of wrong size being allocated?
Describe the bug
as well as "unix circuitpython" with the same ulab version
To Reproduce
Expected behavior Would like behavior to match standard Python & not hardfault
Additional context Is an output array of wrong size being allocated?