We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b048b commit 163ee6bCopy full SHA for 163ee6b
python/paddle/jit/api.py
@@ -292,9 +292,9 @@ def decorated(python_func):
292
flag = ENV_ENABLE_SOT.get()
293
full_graph = not flag
294
295
- if sys.version_info >= (3, 14) and not full_graph:
+ if sys.version_info >= (3, 13) and not full_graph:
296
warnings.warn(
297
- "full_graph=False is not supported in Python 3.14+. Set full_graph=True automatically"
+ "full_graph=False is not supported in Python 3.13+. Set full_graph=True automatically"
298
)
299
full_graph = True
300
0 commit comments