Skip to content

Commit

Permalink
Add case
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Feb 16, 2025
1 parent 0024eae commit 9d953b9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion neqo-http3/benches/streams.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,14 @@ fn connect() -> (Http3Client, Http3Server) {
fn criterion_benchmark(c: &mut Criterion) {
fixture_init();

for (streams, size) in [(1, 1), (1000, 1), (10000, 1), (1, 1000), (100, 1000)] {
for (streams, size) in [
(1, 1),
(1000, 1),
(10000, 1),
(1, 1000),
(100, 1000),
(1000, 1000),
] {
let mut group = c.benchmark_group(format!("{streams} streams of {size} bytes"));
group.bench_function("multistream", |b| {
let data = vec![0; size];
Expand Down

0 comments on commit 9d953b9

Please sign in to comment.