Shortcuts

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

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources