PINA icon indicating copy to clipboard operation
PINA copied to clipboard

Compilation not supported for Python >= 3.14

Open GiovanniCanali opened this issue 3 months ago • 0 comments

Describe the bug PyTorch does not support torch.compile on Python 3.14+.

This is clearly stated here https://github.com/pytorch/pytorch/blob/main/torch/init.py#L2608:

if sys.version_info >= (3, 14):
        raise RuntimeError("torch.compile is not supported on Python 3.14+")

GiovanniCanali avatar Oct 27 '25 09:10 GiovanniCanali