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
This issue is to implement dpctl.tensor.unstack(x: array, /, *, axes : int = 0) -> Tuple[array, ...] to split an array in a sequence of arrays along the given axis.
This issue is to implement
dpctl.tensor.unstack(x: array, /, *, axes : int = 0) -> Tuple[array, ...]
to split an array in a sequence of arrays along the given axis.The
unstack
function is being added to the array API spec, see data-apis/array-api#604This function can be implemented in pure Python.
The text was updated successfully, but these errors were encountered: