From 82e11973cc07909de895a1309ce0f6a2144c576a Mon Sep 17 00:00:00 2001 From: Zhengxu Chen Date: Tue, 10 Feb 2026 10:24:42 -0500 Subject: [PATCH] [compile] Enable AOT compile with 2.10 in trunk. (#34155) Signed-off-by: Zhengxu Chen --- vllm/envs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/envs.py b/vllm/envs.py index 19464f2f2..3af85be0a 100755 --- a/vllm/envs.py +++ b/vllm/envs.py @@ -271,7 +271,7 @@ def use_aot_compile() -> bool: default_value = ( "1" - if is_torch_equal_or_newer("2.11.0.dev") and not disable_compile_cache() + if is_torch_equal_or_newer("2.10.0") and not disable_compile_cache() else "0" )