Home | History | Annotate | Download | only in benchmark

Lines Matching refs:Threads

123 In a multithreaded test, it is guaranteed that none of the threads will start
139 BENCHMARK(BM_MultiThreaded)->Threads(4);
302 // NOTE: The "real time" measurement is per-thread. If different threads
327 // calls to `KeepRunning()` will block until all threads have completed
328 // the `KeepRunning()` loop. If multiple threads report an error only the
437 // Index of the executing thread. Values from [0, threads).
439 // Number of threads concurrently executing the benchmark.
440 const int threads;
530 // Threads, etc.
552 // If a particular benchmark is I/O bound, runs multiple threads internally or
577 // in multiple threads. This may be useful when measuring the scaling
580 // Run one instance of this benchmark concurrently in t threads.
581 Benchmark* Threads(int t);
586 // particular value t consists of t threads running the benchmark
591 // Foo in 2 threads
592 // Foo in 4 threads
593 // Foo in 8 threads
594 // Foo in 16 threads
597 // For each value n in the range, run this benchmark once using n threads.
600 // a benchmark with 1, 4, 7 and 8 threads.