You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: benchmark_suite/benchmark_provdb/benchmark_client.cpp
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ struct Args{
31
31
int perf_write_freq;
32
32
std::string perf_dir;
33
33
bool do_state_dump; //have the provdb record its state every time the perf stats are written (by rank 0)
34
+
int max_outstanding_sends; //if set >0 the benchmark will pause when the number of outstanding asynchronous sends reaches this number until it reaches 0 again
34
35
35
36
Args(){
36
37
cycles = 10;
@@ -45,6 +46,7 @@ struct Args{
45
46
perf_write_freq = 10;
46
47
perf_dir=".";
47
48
do_state_dump = false;
49
+
max_outstanding_sends = 0;
48
50
}
49
51
};
50
52
@@ -73,6 +75,8 @@ int main(int argc, char **argv){
0 commit comments