Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 40) sorted by relevance

12

/oneTBB/examples/parallel_for/game_of_life/
H A DGame_of_life.cpp35 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 Dtest_all.cpp88 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 Dbasics.hpp255 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 DREADME.md21 …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 DSummary_of_Loops_and_Pipelines.rst6 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 DSummary_of_Containers.rst7 The high-level containers in |full_name|
H A DThe_Task_Scheduler.rst12 onto one of the high-level templates, use the task scheduler.
H A DControlling_Chunking_os.rst84 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 DREADME.md21 …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 DREADME.md21 … - 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 DREADME.md22 …o use. This number is specified in the low\[:high\] range format, where both ``low`` and, optional…
/oneTBB/examples/parallel_pipeline/square/
H A DREADME.md22 … - 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 DREADME.md23 …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 DREADME.md27 … - 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 Dfibonacci.cpp415 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 Dtesting_approach.rst13 |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 DREADME.md24 … - 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 DREADME.md25 …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 DREADME.md24 …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 DREADME.md23 … - the number of threads to use; a range of the form low\[:high\] where low and optional high are …
/oneTBB/test/tbb/
H A Dtest_arena_priorities.cpp195 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 DREADME.md27 … - 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 DREADME.md31 …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 Dutility.hpp495 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 DREADME.md41 … - the number of threads to use; a range of the form low\[:high\], where low and optional high are…

12