Lines Matching refs:to
2 Example that uses `parallel_for_each` to do parallel preorder traversal of a sparse graph.
9 …ciated field `ref_count` that is an atomic integer. Initialize `ref_count` to the number of inputs…
10 3. Update each cell in `root_set`, by applying a `parallel_for_each` to a `root_set`.
13 …2. If the count became zero, add the cell to the set of cells to be updated, by calling `feeder::a…
19 **Note:** It is important to understand that this example is unlikely to show speedup if the cell v…
20 * The smaller value type causes each `Cell` to be significantly smaller than a cache line, which le…
21 * The time to update the cells becomes very small, and consequently the overhead of `parallel_for_e…
32 * `make perf_run_parallel_preorder` - executes the example with suggested parameters to measure the…
33 * `make light_test_parallel_preorder` - executes the example with suggested parameters to reduce ex…
41 * `n-of-threads` - the number of threads to use; a range of the form low\[:high\], where low and op…
43 * `n-of-traversals` - the number of times to evaluate the graph. Default value is 500.