Skip to content

Commit

Permalink
[Kernel] Add back batch size 1536 and 3072 to MoE tuning (vllm-projec…
Browse files Browse the repository at this point in the history
  • Loading branch information
WoosukKwon authored and joerunde committed Jun 4, 2024
1 parent 8dddd6b commit bdbb931
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchmarks/kernels/benchmark_moe.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,9 @@ def main(args: argparse.Namespace):
use_fp8 = args.dtype == "fp8"

if args.batch_size is None:
batch_sizes = [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096]
batch_sizes = [
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 1536, 2048, 3072, 4096
]
else:
batch_sizes = [args.batch_size]

Expand Down

0 comments on commit bdbb931

Please sign in to comment.