Skip to content

Commit

Permalink
add performance warning
Browse files Browse the repository at this point in the history
  • Loading branch information
divakar-amd committed Oct 1, 2024
1 parent d1dab9b commit 7ad8b57
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vllm/model_executor/layers/fused_moe/fused_moe.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,9 @@ def get_moe_configs(E: int, N: int,

# If no optimized configuration is available, we will use the default
# configuration
logger.info("Using default MoE config. Config file not found at %s",
config_file_path)
logger.warning(
("Using default MoE config. Performance might be sub-optimal! "
"Config file not found at %s"), config_file_path)
return None


Expand Down

0 comments on commit 7ad8b57

Please sign in to comment.