Skip to content

Commit

Permalink
reduce overhead of rps-multi
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectsByJackHe committed Dec 4, 2024
1 parent 9c41c71 commit 092aa60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/perf/lib/PerfClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,20 +132,20 @@ PerfClient::Init(
Download = 4000;
ConnectionCount = 16 * CxPlatProcCount();
StreamCount = 100;
RunTime = S_TO_US(20); // 20 seconds
RunTime = S_TO_US(5); // 5 seconds
RepeatStreams = TRUE;
PrintLatency = TRUE;
} else if (IsValue(ScenarioStr, "rps")) {
Upload = 512;
Download = 4000;
StreamCount = 100;
RunTime = S_TO_US(20); // 20 seconds
RunTime = S_TO_US(5); // 5 seconds
RepeatStreams = TRUE;
PrintLatency = TRUE;
} else if (IsValue(ScenarioStr, "latency")) {
Upload = 512;
Download = 4000;
RunTime = S_TO_US(20); // 20 seconds
RunTime = S_TO_US(5); // 5 seconds
RepeatStreams = TRUE;
PrintLatency = TRUE;
} else {
Expand Down

0 comments on commit 092aa60

Please sign in to comment.