mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-19 06:05:01 +08:00
[Bugfix] Fix 'InductorAdaptor object has no attribute 'cache_dir' (#15674)
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com>
This commit is contained in:
parent
280d074103
commit
70f2c2a709
@ -144,6 +144,7 @@ class InductorAdaptor(CompilerInterface):
|
|||||||
return hash_str
|
return hash_str
|
||||||
|
|
||||||
def initialize_cache(self, cache_dir: str, disable_cache: bool = False):
|
def initialize_cache(self, cache_dir: str, disable_cache: bool = False):
|
||||||
|
self.cache_dir = cache_dir
|
||||||
if disable_cache:
|
if disable_cache:
|
||||||
return
|
return
|
||||||
# redirect the cache directory to a sub-directory
|
# redirect the cache directory to a sub-directory
|
||||||
@ -156,7 +157,6 @@ class InductorAdaptor(CompilerInterface):
|
|||||||
triton_cache = os.path.join(cache_dir, "triton_cache")
|
triton_cache = os.path.join(cache_dir, "triton_cache")
|
||||||
os.makedirs(triton_cache, exist_ok=True)
|
os.makedirs(triton_cache, exist_ok=True)
|
||||||
os.environ["TRITON_CACHE_DIR"] = triton_cache
|
os.environ["TRITON_CACHE_DIR"] = triton_cache
|
||||||
self.cache_dir = cache_dir
|
|
||||||
|
|
||||||
def compile(
|
def compile(
|
||||||
self,
|
self,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user