Lines Matching refs:constraints
17 Such customizations are encapsulated within the ``task_arena::constraints`` structure.
18 To set the limitation, you have to customize the ``task_arena::constraints`` and then pass
21 The structure ``task_arena::constraints`` allows to specify the following restrictions:
28 …y use the interfaces from ``tbb::info`` namespace to construct the ``tbb::task_arena::constraints``
41 assign a NUMA node identifier to the ``task_arena::constraints::numa_id`` field.
50 arenas[j].initialize(tbb::task_arena::constraints(numa_indexes[j]));
66 …execution, assign a specific core type identifier to the ``task_arena::constraints::core_type`` fi…
74 tbb::task_arena::constraints{}.set_core_type(core_types.back())
86 assign the desired value to the ``task_arena::constraints::max_threads_per_core`` field.
92 tbb::task_arena no_ht_arena( tbb::task_arena::constraints{}.set_max_threads_per_core(1) );
103 tbb::task_arena::constraints{}.set_max_threads_per_core(1)