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
Currently, broadcast_arrays is mandated to return a list. A tuple appears more appropriate on face value, though. NumPy and Dask are, in fact, returning tuples from this function. However, cupy follows the letter of the standard and returns a list. ndonnx is currently returning a list, too, but we would be willing to migrate over to returning a tuple.
The text was updated successfully, but these errors were encountered:
Currently,
broadcast_arrays
is mandated to return alist
. Atuple
appears more appropriate on face value, though. NumPy and Dask are, in fact, returningtuples
from this function. However, cupy follows the letter of the standard and returns alist
. ndonnx is currently returning alist
, too, but we would be willing to migrate over to returning a tuple.The text was updated successfully, but these errors were encountered: