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
011e612d
Unverified
Commit
011e612d
authored
Feb 08, 2025
by
Jun Duan
Committed by
GitHub
Feb 08, 2025
Browse files
[Misc] Log time consumption on weight downloading (#12926)
parent
7e183767
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
vllm/model_executor/model_loader/weight_utils.py
vllm/model_executor/model_loader/weight_utils.py
+10
-1
No files found.
vllm/model_executor/model_loader/weight_utils.py
View file @
011e612d
...
...
@@ -6,6 +6,7 @@ import hashlib
import
json
import
os
import
tempfile
import
time
from
collections
import
defaultdict
from
typing
import
Any
,
Callable
,
Dict
,
Generator
,
List
,
Optional
,
Tuple
,
Union
...
...
@@ -14,7 +15,8 @@ import gguf
import
huggingface_hub.constants
import
numpy
as
np
import
torch
from
huggingface_hub
import
HfFileSystem
,
hf_hub_download
,
snapshot_download
from
huggingface_hub
import
(
HfFileSystem
,
hf_hub_download
,
scan_cache_dir
,
snapshot_download
)
from
safetensors.torch
import
load_file
,
safe_open
,
save_file
from
tqdm.auto
import
tqdm
...
...
@@ -253,6 +255,8 @@ def download_weights_from_hf(
# Use file lock to prevent multiple processes from
# downloading the same model weights at the same time.
with
get_lock
(
model_name_or_path
,
cache_dir
):
start_size
=
scan_cache_dir
().
size_on_disk
start_time
=
time
.
perf_counter
()
hf_folder
=
snapshot_download
(
model_name_or_path
,
allow_patterns
=
allow_patterns
,
...
...
@@ -262,6 +266,11 @@ def download_weights_from_hf(
revision
=
revision
,
local_files_only
=
huggingface_hub
.
constants
.
HF_HUB_OFFLINE
,
)
end_time
=
time
.
perf_counter
()
end_size
=
scan_cache_dir
().
size_on_disk
if
end_size
!=
start_size
:
logger
.
info
(
"Time took to download weights for %s: %.6f seconds"
,
model_name_or_path
,
end_time
-
start_time
)
return
hf_folder
...
...
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