We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c2b3b3 commit ae2cdadCopy full SHA for ae2cdad
benchmarks/benchmark_throughput.py
@@ -523,6 +523,13 @@ def validate_args(args):
523
raise ValueError(
524
"Tokenizer must be the same as the model for MII backend.")
525
526
+ # --data-parallel is not supported currently.
527
+ # https://github.com/vllm-project/vllm/issues/16222
528
+ if args.data_parallel_size > 1:
529
+ raise ValueError(
530
+ "Data parallel is not supported in offline benchmark, \
531
+ please use benchmark serving instead")
532
+
533
534
if __name__ == "__main__":
535
parser = FlexibleArgumentParser(description="Benchmark the throughput.")
0 commit comments