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
4dbdf4a2
Unverified
Commit
4dbdf4a2
authored
Oct 06, 2025
by
ahao-anyscale
Committed by
GitHub
Oct 07, 2025
Browse files
[BUG] Fix file parsing for load_format runai_streamer_sharded (#26324)
Signed-off-by:
ahao-anyscale
<
ahao@anyscale.com
>
parent
c6873c4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/model_executor/model_loader/sharded_state_loader.py
vllm/model_executor/model_loader/sharded_state_loader.py
+1
-1
No files found.
vllm/model_executor/model_loader/sharded_state_loader.py
View file @
4dbdf4a2
...
@@ -121,7 +121,7 @@ class ShardedStateLoader(BaseModelLoader):
...
@@ -121,7 +121,7 @@ class ShardedStateLoader(BaseModelLoader):
filepaths
=
[]
filepaths
=
[]
if
is_s3
(
local_model_path
):
if
is_s3
(
local_model_path
):
file_pattern
=
f
"*
{
self
.
pattern
.
format
(
rank
=
rank
,
part
=
'
*
'
)
}
"
file_pattern
=
f
"*
{
self
.
pattern
.
format
(
rank
=
rank
,
part
=
'
*
'
)
}
"
filepaths
=
s3_glob
(
path
=
local_model_path
,
allow_pattern
=
[
file_pattern
])
filepaths
=
s3_glob
(
path
=
local_model_path
,
allow_pattern
=
[
file_pattern
])
else
:
else
:
filepaths
=
glob
.
glob
(
pattern
)
filepaths
=
glob
.
glob
(
pattern
)
...
...
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