Skip to content

Commit

Permalink
Increase iterations, decrease time
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Sep 20, 2023
1 parent b0eaec5 commit 175597c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions perf/runner/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ async function main(clientPublicIP: string, serverPublicIP: string, testing: boo
uploadBytes: Number.MAX_SAFE_INTEGER, // TODO Ideally we have this implied through a flag.
downloadBytes: 0,
unit: "bit/s",
iterations: testing ? 1 : 5,
durationSecondsPerIteration: testing ? 5 : 60,
iterations: testing ? 1 : 10,
durationSecondsPerIteration: testing ? 5 : 20,
}),
runBenchmarkAcrossVersions({
name: "throughput/download",
Expand All @@ -29,8 +29,8 @@ async function main(clientPublicIP: string, serverPublicIP: string, testing: boo
uploadBytes: 0,
downloadBytes: Number.MAX_SAFE_INTEGER, // TODO Ideally we have this implied through a flag.
unit: "bit/s",
iterations: testing ? 1 : 5,
durationSecondsPerIteration: testing ? 5 : 60,
iterations: testing ? 1 : 10,
durationSecondsPerIteration: testing ? 5 : 20,
}),
runBenchmarkAcrossVersions({
name: "Connection establishment + 1 byte round trip latencies",
Expand Down

0 comments on commit 175597c

Please sign in to comment.