torch.can_cast

torch.can_cast(from, to) → bool

Determines if a type conversion is allowed under PyTorch casting rules described in the type promotion documentation.

Parameters

Example:

>>> torch.can_cast(torch.double, torch.float)
True
>>> torch.can_cast(torch.float, torch.int)
False

© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.8.0/generated/torch.can_cast.html