Unverified Commit 71a4a2fb authored by Richard Zou's avatar Richard Zou Committed by GitHub
Browse files

[BugFix] Fix order of compile logging (#38012)


Signed-off-by: default avatarRichard Zou <zou3519@gmail.com>
parent 935c46dd
......@@ -300,7 +300,9 @@ def _try_load_aot_compiled_fn(
with maybe_use_cudagraph_partition_wrapper(model.vllm_config):
loaded_fn._artifacts.compiled_fn.finalize_loading(model.vllm_config)
compilation_counter.num_aot_artifacts_loaded += 1
logger.info("Directly load AOT compilation from path %s", aot_compilation_path)
logger.info(
"Directly load AOT compilation from path %s", aot_compilation_path
)
return loaded_fn
except Exception as e:
if os.path.exists(aot_compilation_path):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment