Home | History | Annotate | Download | only in performance

Lines Matching refs:workers

207     vector<sp<IBenchmark>> workers;
218 workers.push_back(service);
235 Return<void> ret = workers[target]->sendVec(data_vec, [&](const auto &) {});
308 // Num of workers.
309 int workers = 2;
327 workers = atoi(argv[i + 1]);
344 services = workers;
358 // Create workers (test clients).
360 for (int i = 0; i < workers; i++) {
363 // Wait untill all workers are ready.
366 // Run the workers and wait for completion.
368 cout << "waiting for workers to complete" << endl;
375 double iterations_per_sec = double(iterations * workers)
380 // Collect all results from the workers.
384 for (int i = 0; i < workers; i++) {
403 // Kill all the workers.
404 cout << "killing workers" << endl;
406 for (int i = 0; i < workers; i++) {