| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | Game_of_life.cpp | 35 int high; //! high range limit of threads variable 87 high = low; in ParseCommandLine() 98 high = strtol(s, &end, 0); in ParseCommandLine() 101 case ':': high = strtol(end + 1, nullptr, 0); break; in ParseCommandLine() 105 if (high < low) { in ParseCommandLine() 106 std::cout << "Set correct range. Current range: " << low << ":" << high << "\n"; in ParseCommandLine() 140 for (int p = low; p <= high; ++p) { in main()
|
| /oneTBB/examples/graph/logic_sim/ |
| H A D | test_all.cpp | 88 assert(output.get_value() == high); in main() 105 assert(output.get_value() == high); in main() 146 assert(output.get_value() == high); in main() 174 assert(output.get_value() == high); in main() 180 assert(output.get_value() == high); in main() 186 assert(output.get_value() == high); in main() 193 assert(output.get_value() == high); in main() 199 assert(output.get_value() == high); in main() 205 assert(output.get_value() == high); in main() 286 steady_signal input0(g, high); in main() [all …]
|
| H A D | basics.hpp | 255 val = high; in operator ()() 351 if (state == high) in flip() 354 state = high; in flip() 402 state = high; in operator ()() 584 if (new_state == high) in operator ()() 587 new_state = high; in operator ()() 662 if (state == high) in display() 696 if (ports[0] == high) in operator ()() 698 if (ports[1] == high) in operator ()() 700 if (ports[2] == high) in operator ()() [all …]
|
| H A D | README.md | 21 …s` - the number of threads to use; a range of the form low[:high] where low and optional high are …
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Summary_of_Loops_and_Pipelines.rst | 6 The high-level loop and pipeline templates in |full_name| 8 They let you design your software at a high task-pattern level and not worry about low-level manipu…
|
| H A D | Summary_of_Containers.rst | 7 The high-level containers in |full_name|
|
| H A D | The_Task_Scheduler.rst | 12 onto one of the high-level templates, use the task scheduler.
|
| H A D | Controlling_Chunking_os.rst | 84 shows how too small a grainsize leads to a relatively high proportion of 113 A drawback of setting a grainsize too high is that it can reduce 117 on the side of being a little too high instead of a little too low,
|
| /oneTBB/examples/concurrent_hash_map/count_strings/ |
| H A D | README.md | 21 …ads` - number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/parallel_reduce/primes/ |
| H A D | README.md | 21 … - the number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/parallel_reduce/pi/ |
| H A D | README.md | 22 …o use. This number is specified in the low\[:high\] range format, where both ``low`` and, optional…
|
| /oneTBB/examples/parallel_pipeline/square/ |
| H A D | README.md | 22 … - the number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/graph/dining_philosophers/ |
| H A D | README.md | 23 …umber of threads to use; a range of the form low\[:high\[:(+|*|#)step\]\], where low and optional …
|
| /oneTBB/examples/parallel_reduce/convex_hull/ |
| H A D | README.md | 27 … - the number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/test_all/fibonacci/ |
| H A D | fibonacci.cpp | 415 int high; member 417 IntRange(int low_, int high_) : low(low_), high(high_) {} in IntRange() 422 high = low = strtol(s, &end, 0); in set_from_string() 424 case ':': high = strtol(end + 1, nullptr, 0); break; in set_from_string() 473 for (int threads = NThread.low; threads <= NThread.high; threads *= 2) { in main()
|
| /oneTBB/doc/main/intro/ |
| H A D | testing_approach.rst | 13 |short_name| testing approach is designed to provide high coverage of these error types. 16 Code coverage metrics are tracked to ensure high code coverage with tests. Uncovered branches are a…
|
| /oneTBB/examples/task_group/sudoku/ |
| H A D | README.md | 24 … - the number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/graph/som/ |
| H A D | README.md | 25 …ads` - number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/parallel_for/seismic/ |
| H A D | README.md | 24 …ds` -e number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/graph/binpack/ |
| H A D | README.md | 23 … - the number of threads to use; a range of the form low\[:high\] where low and optional high are …
|
| /oneTBB/test/tbb/ |
| H A D | test_arena_priorities.cpp | 195 tbb::task_arena::priority high = tbb::task_arena::priority::high; in test() local 203 tbb::task_arena::priority priorities[] = {high, normal, low}; // keep it sorted in test()
|
| /oneTBB/examples/task_arena/fractal/ |
| H A D | README.md | 27 … - the number of threads to use; a range of the form low\[:high\], where low and optional high are…
|
| /oneTBB/examples/concurrent_priority_queue/shortpath/ |
| H A D | README.md | 31 …eads` - number of threads to use; a range of the form low[:high], where low and optional high are …
|
| /oneTBB/examples/common/utility/ |
| H A D | utility.hpp | 495 int low, high; in operator >>() local 498 low = high = string_to_number_of_threads(s); in operator >>() 505 high = string_to_number_of_threads( in operator >>() 511 range = thread_number_range(range.auto_number_of_threads, low, high, range.step); in operator >>()
|
| /oneTBB/examples/parallel_for_each/parallel_preorder/ |
| H A D | README.md | 41 … - the number of threads to use; a range of the form low\[:high\], where low and optional high are…
|