Skip to content

Commit 9cdea30

Browse files
authored
[Misc][Easy] Remove the space from the file name
1 parent 76abd0c commit 9cdea30

File tree

42 files changed

+2
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2
-2
lines changed

vllm/model_executor/layers/fused_moe/fused_moe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ def get_config_file_name(E: int,
765765
device_name = current_platform.get_device_name().replace(" ", "_")
766766
dtype_selector = "" if not dtype else f",dtype={dtype}"
767767
block_shape_selector = ("" if not block_shape or not all(block_shape) else
768-
f",block_shape={block_shape}")
768+
f",block_shape={block_shape}").replace(" ", "")
769769
return f"E={E},N={N},device_name={device_name}{dtype_selector}{block_shape_selector}.json" # noqa: E501
770770

771771

0 commit comments

Comments
 (0)