There was an error while loading. Please reload this page.
1 parent d9ab1ad commit 26990d2Copy full SHA for 26990d2
vllm/model_executor/layers/fused_moe/fused_moe.py
@@ -819,8 +819,8 @@ def get_config_file_name(
819
) -> str:
820
device_name = current_platform.get_device_name().replace(" ", "_")
821
# Set device_name to H200 if a device from the H200 family is detected
822
- if "H200" in device_name:
823
- device_name = "H200"
+ if "H200" in device_name.split("_"):
+ device_name = "NVIDIA_H200"
824
dtype_selector = "" if not dtype else f",dtype={dtype}"
825
block_shape_selector = (
826
"" if not block_shape or not all(block_shape) else f",block_shape={block_shape}"
0 commit comments