We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a0e866 commit b186360Copy full SHA for b186360
pina/trainer.py
@@ -107,6 +107,10 @@ def __init__(
107
if compile is None or sys.platform == "win32":
108
compile = False
109
110
+ # If python version >= 3.14, disable torch.compile
111
+ if sys.version_info > (3, 13):
112
+ compile = False
113
+
114
repeat = repeat if repeat is not None else False
115
116
automatic_batching = (
0 commit comments