Lines Matching refs:reduction
13 Perform an associative reduction operation across a data set.
50 - Are instances of the reduction type expensive to construct and
57 construct. It works even if the reduction operation is not
61 Use ``oneapi::tbb::parallel_for`` and ``oneapi::tbb::combinable`` if the reduction
66 deterministic result is required, use recursive reduction and
80 The first example uses ``oneapi::tbb::parallel_reduce`` to do a + reduction
90 // Index range for reduction
106 elementwise action to be performed before the reduction,
107 incorporating it into the third argument (reduction of a subrange)
144 Fully deterministic parallel reduction for a not quite associative
146 demonstrates this in the form of a template that does a + reduction
156 // Use serial reduction
159 // Do parallel divide-and-conquer reduction
172 recursive computations. The reduction graph, though not a strict
179 efficient way to get reproducible non-associative reduction. It is
181 builds a deterministic reduction graph. With it, the
192 // Index range for reduction
213 a reduction can be parallelized by viewing it as a reduction. The