Skip to content

Commit ef8a3fb

Browse files
committed
<Replace this line with a title. Use 1 line only, 67 chars or less>
Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: Signed-off-by: Yanan Cao <gmagogsfm@gmail.com>
1 parent b2e65cb commit ef8a3fb

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

vllm/compilation/backends.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
EagerAdaptor,
3434
InductorAdaptor,
3535
InductorStandaloneAdaptor,
36+
is_compile_cache_enabled,
3637
)
3738
from .counter import compilation_counter
3839
from .inductor_pass import InductorPass
@@ -238,7 +239,7 @@ def compile(
238239
assert compiled_graph is not None, "Failed to compile the graph"
239240

240241
# store the artifact in the cache
241-
if not envs.VLLM_DISABLE_COMPILE_CACHE and handle is not None:
242+
if is_compile_cache_enabled(additional_inductor_config) and handle is not None:
242243
self.cache[(runtime_shape, graph_index, self.compiler.name)] = handle
243244
compilation_counter.num_cache_entries_updated += 1
244245
self.is_cache_updated = True
@@ -610,7 +611,9 @@ def __call__(
610611
os.makedirs(local_cache_dir, exist_ok=True)
611612
self.compilation_config.local_cache_dir = local_cache_dir
612613

613-
disable_cache = envs.VLLM_DISABLE_COMPILE_CACHE
614+
disable_cache = not is_compile_cache_enabled(
615+
self.compilation_config.inductor_compile_config
616+
)
614617

615618
if disable_cache:
616619
logger.info_once("vLLM's torch.compile cache is disabled.", scope="local")

vllm/compilation/compiler_interface.py

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,23 @@ def get_inductor_factors() -> list[Any]:
163163
return factors
164164

165165

166+
def is_compile_cache_enabled(
167+
vllm_additional_inductor_config: dict[str, Any],
168+
) -> bool:
169+
vllm_inductor_config_disable_cache = vllm_additional_inductor_config.get(
170+
"force_disable_caches", False
171+
)
172+
173+
# TODO(gmagogsfm): Replace torch._inductor.config.force_disable_caches
174+
# with torch.compiler.config.force_disable_caches when minimum PyTorch
175+
# version reaches 2.10
176+
return (
177+
not envs.VLLM_DISABLE_COMPILE_CACHE
178+
and not torch._inductor.config.force_disable_caches
179+
and not vllm_inductor_config_disable_cache
180+
)
181+
182+
166183
class InductorStandaloneAdaptor(CompilerInterface):
167184
"""
168185
The adaptor for the Inductor compiler.
@@ -219,7 +236,8 @@ def compile(
219236
# Save the compiled artifact to disk in the specified path
220237
assert key is not None
221238
path = os.path.join(self.cache_dir, key)
222-
if not envs.VLLM_DISABLE_COMPILE_CACHE:
239+
240+
if is_compile_cache_enabled(compiler_config):
223241
compiled_graph.save(path=path, format="unpacked")
224242
compilation_counter.num_compiled_artifacts_saved += 1
225243
return compiled_graph, (key, path)
@@ -469,10 +487,8 @@ def _get_shape_env() -> AlwaysHitShapeEnv:
469487
config_patches=current_config,
470488
)
471489

472-
# We treat VLLM_DISABLE_COMPILE_CACHE as the overall switch for torch
473-
# compilation cache. So turn off the checks if we disable the
474-
# compilation cache.
475-
if not envs.VLLM_DISABLE_COMPILE_CACHE:
490+
# Turn off the checks if we disable the compilation cache.
491+
if is_compile_cache_enabled(compiler_config):
476492
if hash_str is None:
477493
raise RuntimeError(
478494
"vLLM failed to compile the model. The most "

0 commit comments

Comments
 (0)