W3cubDocs

/PyTorch 2.9

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

© 2025, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://docs.pytorch.org/docs/2.9/generated/torch.can_cast.html