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
The dtype of a is used by default unless a has an integer dtype of less precision than the default platform integer. In that case, if a is signed then the platform integer is used while if a is unsigned then an unsigned integer of the same precision as the platform integer is used.
When I try passing a
dtype
to xarray_reduce, the output is stilluint64
for some reason:This happens whether I use
"uint8"
as a string ornp.uint8
.Of course, I can just use
.astype
after the fact, but I expect this is an allowed parameter for some reason or another?The text was updated successfully, but these errors were encountered: