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
A bunch of array-api-tests are failing with the latest version of PyTorch with RuntimeError: Promotion for uint16, uint32, uint64 types is not supported, attempted to promote Int and UInt16.
It seems PyTorch added support for uint16, but the support is limited:
It would be useful if we could skip this dtype entirely in the test suite somehow. Otherwise we will basically need to xfail every two-argument function test.
The text was updated successfully, but these errors were encountered:
A bunch of array-api-tests are failing with the latest version of PyTorch with
RuntimeError: Promotion for uint16, uint32, uint64 types is not supported, attempted to promote Int and UInt16
.It seems PyTorch added support for uint16, but the support is limited:
See https://pytorch.org/docs/stable/tensors.html#id12
It would be useful if we could skip this dtype entirely in the test suite somehow. Otherwise we will basically need to xfail every two-argument function test.
The text was updated successfully, but these errors were encountered: