Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
2918c1b4
Unverified
Commit
2918c1b4
authored
Oct 31, 2025
by
Roger Meier
Committed by
GitHub
Oct 30, 2025
Browse files
[Model] Use the same fused_moe configs for all H200 devices (#23642)
Signed-off-by:
Roger Meier
<
r.meier@siemens.com
>
parent
10042057
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
vllm/model_executor/layers/fused_moe/fused_moe.py
vllm/model_executor/layers/fused_moe/fused_moe.py
+3
-0
No files found.
vllm/model_executor/layers/fused_moe/fused_moe.py
View file @
2918c1b4
...
@@ -818,6 +818,9 @@ def get_config_file_name(
...
@@ -818,6 +818,9 @@ def get_config_file_name(
E
:
int
,
N
:
int
,
dtype
:
str
|
None
,
block_shape
:
list
[
int
]
|
None
=
None
E
:
int
,
N
:
int
,
dtype
:
str
|
None
,
block_shape
:
list
[
int
]
|
None
=
None
)
->
str
:
)
->
str
:
device_name
=
current_platform
.
get_device_name
().
replace
(
" "
,
"_"
)
device_name
=
current_platform
.
get_device_name
().
replace
(
" "
,
"_"
)
# Set device_name to H200 if a device from the H200 family is detected
if
"H200"
in
device_name
:
device_name
=
"H200"
dtype_selector
=
""
if
not
dtype
else
f
",dtype=
{
dtype
}
"
dtype_selector
=
""
if
not
dtype
else
f
",dtype=
{
dtype
}
"
block_shape_selector
=
(
block_shape_selector
=
(
""
if
not
block_shape
or
not
all
(
block_shape
)
else
f
",block_shape=
{
block_shape
}
"
""
if
not
block_shape
or
not
all
(
block_shape
)
else
f
",block_shape=
{
block_shape
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment