Skip to content

Commit

Permalink
[ci] fix gh200 tests (vllm-project#11919)
Browse files Browse the repository at this point in the history
Signed-off-by: youkaichao <youkaichao@gmail.com>
  • Loading branch information
youkaichao authored Jan 10, 2025
1 parent 61af633 commit d53575a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vllm/model_executor/model_loader/weight_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@

try:
from runai_model_streamer import SafetensorsStreamer
except ImportError:
except (ImportError, OSError):
# see https://github.com/run-ai/runai-model-streamer/issues/26
# OSError will be raised on arm64 platform
runai_model_streamer = PlaceholderModule(
"runai_model_streamer") # type: ignore[assignment]
SafetensorsStreamer = runai_model_streamer.placeholder_attr(
Expand Down

0 comments on commit d53575a

Please sign in to comment.