Unverified Commit d53575a5 authored by youkaichao's avatar youkaichao Committed by GitHub
Browse files

[ci] fix gh200 tests (#11919)


Signed-off-by: default avataryoukaichao <youkaichao@gmail.com>
parent 61af6332
......@@ -29,7 +29,9 @@ from vllm.utils import PlaceholderModule
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(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment