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 <[email protected]>
  • Loading branch information
youkaichao authored and frreiss committed Jan 10, 2025
1 parent 5a9d78e commit 4542c38
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 4542c38

Please sign in to comment.