mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 01:45:01 +08:00
[CI] add missing argument (#18694)
Signed-off-by: Andy Xie <andy.xning@gmail.com>
This commit is contained in:
parent
561b77a0d6
commit
4ea62c0ea0
@ -23,10 +23,11 @@ def test_runai_model_loader():
|
||||
runai_model_streamer_tensors = {}
|
||||
hf_safetensors_tensors = {}
|
||||
|
||||
for name, tensor in runai_safetensors_weights_iterator(safetensors):
|
||||
for name, tensor in runai_safetensors_weights_iterator(
|
||||
safetensors, True):
|
||||
runai_model_streamer_tensors[name] = tensor
|
||||
|
||||
for name, tensor in safetensors_weights_iterator(safetensors):
|
||||
for name, tensor in safetensors_weights_iterator(safetensors, True):
|
||||
hf_safetensors_tensors[name] = tensor
|
||||
|
||||
assert len(runai_model_streamer_tensors) == len(hf_safetensors_tensors)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user