We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 652907b commit 869c37dCopy full SHA for 869c37d
benchmarks/benchmark_throughput.py
@@ -520,6 +520,10 @@ def validate_args(args):
520
raise ValueError(
521
"Tokenizer must be the same as the model for MII backend.")
522
523
+ # --data-parallel is not supported currently.
524
+ # https://github.com/vllm-project/vllm/issues/16222
525
+ if args.data_parallel_size > 1:
526
+ raise ValueError("Data parallel is not supported currently.")
527
528
if __name__ == "__main__":
529
parser = FlexibleArgumentParser(description="Benchmark the throughput.")
0 commit comments