| /oneTBB/test/tbb/ |
| H A D | test_arena_constraints.cpp | 36 std::vector<tbb::core_type_id> core_types = tbb::info::core_types(); in is_observer_created() 37 std::vector<tbb::numa_node_id> numa_nodes = tbb::info::numa_nodes(); in is_observer_created() 103 .set_numa_id(tbb::info::numa_nodes().front()) 104 .set_core_type(tbb::info::core_types().front()) 148 for(const auto& numa_index: tbb::info::numa_nodes()) { 156 for(const auto& core_type_index: tbb::info::core_types()) { 182 REQUIRE_MESSAGE(tbb::info::default_concurrency(c) == custom_concurrency_value, in check_concurrency_level() 195 c.set_numa_id(tbb::info::numa_nodes().front()); 198 c.set_core_type(tbb::info::core_types().front());
|
| H A D | test_mutex.cpp | 47 int info[4] = { 0,0,0,0 }; in have_TSX() local 49 __cpuidex(info, 7, 0); in have_TSX() 50 result = (info[reg_ebx] & rtm_ebx_mask) != 0; in have_TSX()
|
| H A D | test_tbb_header.cpp | 270 TestFuncDefinitionPresence( info::numa_nodes, (), std::vector<tbb::numa_node_id> ); in DefinitionPresence() 271 TestFuncDefinitionPresence( info::default_concurrency, (tbb::numa_node_id), int ); in DefinitionPresence()
|
| H A D | test_arena_priorities.cpp | 344 [priority](arena_info& info) { in test() argument 345 return std::get<arena_priority>(info) == priority; in test()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_arena_constraints.cpp | 28 for(auto& numa_index: oneapi::tbb::info::numa_nodes()) { 47 std::vector<oneapi::tbb::numa_node_id> numa_indexes = oneapi::tbb::info::numa_nodes(); 66 std::vector<tbb::core_type_id> core_types = tbb::info::core_types(); 80 std::vector<oneapi::tbb::numa_node_id> numa_indexes = oneapi::tbb::info::numa_nodes(); 86 …REQUIRE_MESSAGE(oneapi::tbb::info::default_concurrency(numa_indexes[0]) == utils::get_platform_max…
|
| /oneTBB/src/tbb/ |
| H A D | parallel_pipeline.cpp | 187 bool try_put_token( task_info& info ) { in try_put_token() argument 188 info.is_valid = true; in try_put_token() 192 if( !info.my_token_ready ) { in try_put_token() 193 info.my_token = high_token++; in try_put_token() 194 info.my_token_ready = true; in try_put_token() 196 token = info.my_token; in try_put_token() 206 array[token&(array_size-1)] = info; in try_put_token() 303 …stage_task(pipeline& pipeline, d1::base_filter* filter, const task_info& info, d1::small_object_al… in stage_task() argument 304 task_info(info), in stage_task() 342 void spawn_stage_task(const task_info& info, d1::execution_data& ed) { in spawn_stage_task() argument [all …]
|
| /oneTBB/test/tbbmalloc/ |
| H A D | test_malloc_overload.cpp | 459 struct mallinfo info = mallinfo(); variable 466 REQUIRE((!info.arena && !info.ordblks && !info.smblks && !info.hblks 467 && !info.hblkhd && !info.usmblks && !info.fsmblks 468 && !info.uordblks && !info.fordblks && !info.keepcost));
|
| /oneTBB/test/common/ |
| H A D | common_arena_constraints.h | 398 [&](const index_info& info) { return info.index == c.numa_id; } in prepare_reference_affinity_mask() 408 [&](index_info info) { return info.index == c.core_type; } in prepare_reference_affinity_mask() 419 int default_concurrency = tbb::info::default_concurrency(constraints); in test_constraints_affinity_and_concurrency() 513 std::vector<tbb::numa_node_id> numa_nodes = tbb::info::numa_nodes(); in generate_constraints_variety() 517 std::vector<tbb::core_type_id> core_types = tbb::info::core_types(); in generate_constraints_variety() 567 … && (it->numa_id == tbb::task_arena::automatic || tbb::info::numa_nodes().size() == 1) in generate_constraints_variety() 569 … && (it->core_type == tbb::task_arena::automatic || tbb::info::core_types().size() == 1) in generate_constraints_variety()
|
| H A D | vector_types.h | 113 int info[4] = {0, 0, 0, 0}; in have_AVX() local 115 __cpuid(info, 1); in have_AVX() 116 result = (info[ECX] & avx_mask) != 0; in have_AVX()
|
| H A D | memory_usage.h | 119 task_basic_info info; variable 121 …status = task_info(mach_task_self(), TASK_BASIC_INFO, reinterpret_cast<task_info_t>(&info), &msg_t… 123 return info.virtual_size - shared_size;
|
| H A D | doctest.h | 4598 kinfo_proc info; 4602 info.kp_proc.p_flag = 0; 4610 size = sizeof(info); 4611 if(sysctl(mib, DOCTEST_COUNTOF(mib), &info, &size, 0, 0) != 0) { 4616 return ((info.kp_proc.p_flag & P_TRACED) != 0);
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Guiding_Task_Scheduler_Execution.rst | 28 You may use the interfaces from ``tbb::info`` namespace to construct the ``tbb::task_arena::constra… 29 instance. Interfaces from ``tbb::info`` namespace respect the process affinity mask. For instance, 31 not returned by ``tbb::info::numa_nodes()`` interface. 45 std::vector<tbb::numa_node_id> numa_indexes = tbb::info::numa_nodes(); 72 std::vector<tbb::core_type_id> core_types = tbb::info::core_types(); 102 int no_ht_concurrency = tbb::info::default_concurrency(
|
| /oneTBB/doc/main/tbb_userguide/snippets/ |
| H A D | flow_graph_examples.cpp | 29 std::vector<tbb::core_type_id> core_types = tbb::info::core_types(); in flow_graph_attach_to_arena_1() 54 std::vector<tbb::core_type_id> core_types = tbb::info::core_types(); in flow_graph_attach_to_arena_2()
|
| /oneTBB/doc/main/tbb_userguide/Migration_Guide/ |
| H A D | Task_Scheduler_Init.rst | 16 * `oneapi::tbb::info::default_concurrency() 47 #include <oneapi/tbb/info.h> 54 int num_threads = oneapi::tbb::info::default_concurrency(); 78 #include <oneapi/tbb/info.h>
|
| /oneTBB/examples/graph/cholesky/ |
| H A D | cholesky.cpp | 231 int info = 0; in call_dpotf2() local 232 dpotf2(&uplo, &b, A_block, &b, &info); in call_dpotf2() 295 int info = 0; in func() local 297 dpotrf(&uplo, &n, A, &lda, &info); in func() 338 int info = 0; in operator ()() local 339 dpotf2(&uplo, &b, A_block, &b, &info); in operator ()()
|
| /oneTBB/examples/graph/logic_sim/ |
| H A D | README.md | 23 * `silent` limits output to timing info; overrides verbose
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | info.h | 113 namespace info {
|
| /oneTBB/cmake/scripts/ |
| H A D | cmake_gen_github_configs.cmake | 24 # Parse version info
|
| /oneTBB/examples/graph/binpack/ |
| H A D | README.md | 25 * `silent` - limits output to timing info; overrides verbose.
|
| /oneTBB/cmake/compilers/ |
| H A D | MSVC.cmake | 31 # More info can be found at
|
| /oneTBB/doc/ |
| H A D | Doxyfile.in | 711 # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 714 # search path. See also \cite for info how to create references. 1818 # http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
|
| /oneTBB/src/tbb/tools_api/ |
| H A D | ittnotify.h | 2737 __itt_clock_info info; /*!< Most recent clock domain info */ member
|