forked from mesolitica/vllm-whisper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Core] Enable hf_transfer by default if available (vllm-project#3817)
- Loading branch information
1 parent
95d01f9
commit 5b66a14
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import os | ||
|
||
import huggingface_hub.constants | ||
import pytest | ||
|
||
from vllm.model_executor.weight_utils import enable_hf_transfer | ||
|
||
|
||
def test_hf_transfer_auto_activation(): | ||
if "HF_HUB_ENABLE_HF_TRANSFER" in os.environ: | ||
# in case it is already set, we can't test the auto activation | ||
pytest.skip( | ||
"HF_HUB_ENABLE_HF_TRANSFER is set, can't test auto activation") | ||
enable_hf_transfer() | ||
try: | ||
# enable hf hub transfer if available | ||
import hf_transfer # type: ignore # noqa | ||
HF_TRANFER_ACTIVE = True | ||
except ImportError: | ||
HF_TRANFER_ACTIVE = False | ||
assert (huggingface_hub.constants.HF_HUB_ENABLE_HF_TRANSFER == | ||
HF_TRANFER_ACTIVE) | ||
|
||
|
||
if __name__ == "__main__": | ||
test_hf_transfer_auto_activation() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters