| /oneTBB/examples/parallel_for/seismic/ |
| H A D | main.cpp | 75 RunOptions options = ParseCommandLine(argc, argv); in main() local 76 SeismicVideo video(u, options.numberOfFrames, options.threads.last, options.parallel); in main() 81 video.threaded = options.threads.first > 0; in main() 89 if (options.numberOfFrames == 0) { in main() 90 options.numberOfFrames = 1000; in main() 94 for (int p = options.threads.first; p <= options.threads.last; in main() 95 p = options.threads.step(p)) { in main() 98 int numberOfFrames = options.numberOfFrames; in main() 114 if (!options.silent) { in main() 116 options.numberOfFrames / in main()
|
| /oneTBB/examples/parallel_reduce/primes/ |
| H A D | main.cpp | 81 RunOptions options(threads, grainSize, number, silent, repeatNumber); in ParseCommandLine() local 82 return options; in ParseCommandLine() 87 RunOptions options = ParseCommandLine(argc, argv); in main() local 90 for (int p = options.threads.first; p <= options.threads.last; p = options.threads.step(p)) { in main() 91 for (NumberType i = 0; i < options.repeatNumber; ++i) { in main() 94 NumberType n = options.n; in main() 99 NumberType grainSize = options.grainSize; in main() 103 if (!options.silentFlag) { in main() 104 std::cout << "#primes from [2.." << options.n << "] = " << count << " (" in main()
|
| H A D | README.md | 20 * `-h` - prints the help for command line options.
|
| /oneTBB/cmake/ |
| H A D | README.md | 38 cmake <options> <repo_root> 41 Some useful options: 87 cmake --build . <options> 90 Some useful options: 287 * by options group 295 * `LIB` - options applied during libraries build. 296 * `TEST` - options applied during test build. 297 * `BENCH` - options applied during benchmarks build. 300 * `COMPILE` - options applied during the compilation. 301 * `LINK` - options applied during the linkage. [all …]
|
| H A D | config_generation.cmake | 22 set(options HANDLE_SUBDIRS) variable 32 cmake_parse_arguments(tbb_gen_cfg "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
| /oneTBB/examples/graph/dining_philosophers/ |
| H A D | dining_philosophers.cpp | 249 RunOptions options = ParseCommandLine(argc, argv); in main() local 250 num_philosophers = options.number_of_philosophers; in main() 251 verbose = !options.silent; in main() 253 for (num_threads = options.threads.first; num_threads <= options.threads.last; in main() 254 num_threads = options.threads.step(num_threads)) { in main()
|
| H A D | README.md | 22 * `-h` - prints the help for command line options.
|
| /oneTBB/ |
| H A D | INSTALL.md | 14 cmake <options> <repo_root> 17 You may want to use some additional options for configuration: 29 cmake --build . <options> 32 Some useful build options: 76 cmake <options> ..
|
| /oneTBB/src/tbbmalloc_proxy/ |
| H A D | CMakeLists.txt | 41 # gcc 5.0 and later have -Wno-sized-deallocation options 69 # Prefer using target_link_options instead of target_link_libraries to specify link options because 70 # target_link_libraries may incorrectly handle some options (on Windows, for example).
|
| /oneTBB/python/rml/ |
| H A D | CMakeLists.txt | 47 # Prefer using target_link_options instead of target_link_libraries to specify link options because 48 # target_link_libraries may incorrectly handle some options (on Windows, for example).
|
| /oneTBB/src/tbbbind/ |
| H A D | CMakeLists.txt | 69 …# Prefer using target_link_options instead of target_link_libraries to specify link options because 70 # target_link_libraries may incorrectly handle some options (on Windows, for example).
|
| /oneTBB/src/tbbmalloc/ |
| H A D | CMakeLists.txt | 89 # Prefer using target_link_options instead of target_link_libraries to specify link options because 90 # target_link_libraries may incorrectly handle some options (on Windows, for example).
|
| /oneTBB/test/ |
| H A D | CMakeLists.txt | 21 cmake_parse_arguments(_tbb_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) 66 …# Prefer using target_link_options instead of target_link_libraries to specify link options because 67 # target_link_libraries may incorrectly handle some options (on Windows, for example). 91 cmake_parse_arguments(_tbb_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) 121 cmake_parse_arguments(_tbb_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) 159 …# Prefer using target_link_options instead of target_link_libraries to specify link options because 160 # target_link_libraries may incorrectly handle some options (on Windows, for example). 187 cmake_parse_arguments(_runtime_vars "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) 208 cmake_parse_arguments(_hwloc_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) 254 cmake_parse_arguments(_tbbbind_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) [all …]
|
| /oneTBB/examples/concurrent_hash_map/count_strings/ |
| H A D | README.md | 20 * `-h` - prints the help for command line options.
|
| /oneTBB/examples/graph/logic_sim/ |
| H A D | README.md | 20 * `-h` - prints the help for command line options.
|
| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | README.md | 22 * `-h` - prints the help for command line options.
|
| /oneTBB/src/tbb/ |
| H A D | CMakeLists.txt | 106 # Prefer using target_link_options instead of target_link_libraries to specify link options because 107 # target_link_libraries may incorrectly handle some options (on Windows, for example).
|
| /oneTBB/examples/graph/fgbzip2/ |
| H A D | README.md | 23 * `-h` - prints the help for command line options.
|
| /oneTBB/examples/parallel_reduce/pi/ |
| H A D | README.md | 21 * `-h` - prints the help for command-line options.
|
| /oneTBB/examples/parallel_pipeline/square/ |
| H A D | README.md | 21 * `-h` - prints the help for command line options.
|
| /oneTBB/examples/parallel_reduce/convex_hull/ |
| H A D | README.md | 26 * `-h` - prints the help for command line options.
|
| /oneTBB/examples/task_group/sudoku/ |
| H A D | README.md | 23 * `-h` - prints the help for command line options.
|
| /oneTBB/examples/graph/som/ |
| H A D | README.md | 24 * `-h` - prints the help for command line options.
|
| /oneTBB/cmake/compilers/ |
| H A D | AppleClang.cmake | 23 # Depfile options (e.g. -MD) are inserted automatically in some cases.
|
| /oneTBB/doc/main/intro/ |
| H A D | limitations.rst | 21 …ary is employed, coupled with the use of the ``-ffreestanding`` flag and C++11/14 compiler options.
|