[Bugfix] Set enforce_eager automatically for mllama (#12127)
Signed-off-by: Chen Zhang <zhangch99@outlook.com>
This commit is contained in:
@@ -607,10 +607,12 @@ class ModelConfig:
|
||||
self.max_seq_len_to_capture = min(self.max_seq_len_to_capture,
|
||||
self.max_model_len)
|
||||
|
||||
if (self.hf_config.model_type == 'deepseek_v3'
|
||||
MODEL_NOT_SUPPORT_CUDA_GRAPH = ['deepseek_v3', 'mllama']
|
||||
if (self.hf_config.model_type in MODEL_NOT_SUPPORT_CUDA_GRAPH
|
||||
and not self.enforce_eager):
|
||||
logger.warning("CUDA graph is not supported for Deepseek V3 yet, "
|
||||
"fallback to the eager mode.")
|
||||
logger.warning(
|
||||
"CUDA graph is not supported for %s yet, fallback to the eager "
|
||||
"mode.", self.hf_config.model_type)
|
||||
self.enforce_eager = True
|
||||
|
||||
def _verify_bnb_config(self) -> None:
|
||||
|
||||
Reference in New Issue
Block a user