Home
last modified time | relevance | path

Searched refs:original (Results 1 – 20 of 20) sorted by relevance

/oneTBB/test/conformance/
H A Dconformance_blocked_range.cpp129 oneapi::tbb::blocked_range<int> original(0, 100); variable
130 oneapi::tbb::blocked_range<int> first(original);
135 oneapi::tbb::blocked_range<int> copy(original);
138 CHECK(copy.size() == original.size() / 2);
143original.begin() + ps.left() * (original.end() - original.begin()) / (ps.left() + ps.right())
145 utils::check_range_bounds_after_splitting(original, first, second, expected_first_end);
H A Dconformance_blocked_range2d.cpp156 oneapi::tbb::blocked_range2d<int> original(0, 100, 0, 100); variable
157 oneapi::tbb::blocked_range2d<int> first(original);
162original.rows().begin() + ps.left() * (original.rows().end() - original.rows().begin()) / (ps.left…
166 …utils::check_range_bounds_after_splitting(original.cols(), first.cols(), second.cols(), expected_f…
169 …utils::check_range_bounds_after_splitting(original.rows(), first.rows(), second.rows(), expected_f…
H A Dconformance_blocked_range3d.cpp189 oneapi::tbb::blocked_range3d<int> original(0, 100, 0, 100, 0, 100); variable
190 oneapi::tbb::blocked_range3d<int> first(original);
195original.rows().begin() + ps.left() * (original.rows().end() - original.rows().begin()) / (ps.left…
200 …utils::check_range_bounds_after_splitting(original.pages(), first.pages(), second.pages(), expecte…
203 …utils::check_range_bounds_after_splitting(original.cols(), first.cols(), second.cols(), expected_f…
207 …utils::check_range_bounds_after_splitting(original.rows(), first.rows(), second.rows(), expected_f…
H A Dconformance_blocked_rangeNd.cpp260 oneapi::tbb::blocked_rangeNd<int, 2> original{{0, 100}, {0, 100}}; variable
261 oneapi::tbb::blocked_rangeNd<int, 2> first(original);
266original.dim(0).begin() + ps.left() * (original.dim(0).end() - original.dim(0).begin()) / (ps.left…
270 …utils::check_range_bounds_after_splitting(original.dim(1), first.dim(1), second.dim(1), expected_f…
273 …utils::check_range_bounds_after_splitting(original.dim(0), first.dim(0), second.dim(0), expected_f…
H A Dconformance_parallel_for.cpp75 FooRange( FooRange& original, oneapi::tbb::split ) : size(original.size/2) { in FooRange() argument
76 original.size -= size; in FooRange()
77 start = original.start+original.size; in FooRange()
78 CHECK_FAST( original.pad[Pad-1]=='x'); in FooRange()
/oneTBB/doc/main/tbb_userguide/
H A DExceptions_and_Cancellation.rst25 The exception thrown in step 3 might be the original exception, or might
30 oneTBB might throw the original exception. So be sure your code can
H A DNon-Linear_Pipelines.rst23 The light gray arrows are the original arrows that are now implied by
29 processors, the latency of the original non-linear pipeline is three
H A Dparallel_for_os.rst64 local variables that were defined outside the original loop but used
79 whether ``operator()`` is acting on the original or a copy. As a
89 - **Style**. It makes the loop body look more like the original.
H A Dparallel_reduce.rst73 The splitting constructor takes as arguments a reference to the original
H A DWorking_on_the_Assembly_Line_pipeline.rst31 upon whether ``operator()`` is acting on the original or a copy. As a
/oneTBB/test/common/
H A Dutils.h410 void check_range_bounds_after_splitting( const tbb::blocked_range<T>& original, const tbb::blocked_…
413 REQUIRE(first.begin() == original.begin());
416 REQUIRE(second.end() == original.end());
417 REQUIRE(first.size() + second.size() == original.size());
/oneTBB/include/oneapi/tbb/detail/
H A D_machine.h224 unsigned char *original = reinterpret_cast<unsigned char *>(&src); in machine_reverse_bits()
228 reversed[i] = reverse_byte( original[sizeof(T) - i - 1] ); in machine_reverse_bits()
/oneTBB/examples/graph/cholesky/
H A DREADME.md8 … of the computation. Where the oneMKL calls would have been made in the original serial implementa…
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DReference_Counting.rst118 updating the reference count by splitting the original weight between
H A DDivide_and_Conquer.rst204 The results will *not* be in the same order as the original serial
/oneTBB/src/tbb/
H A Dqueuing_rw_mutex.cpp69 tricky_atomic_pointer( T*& original ) : ref(original) {}; in tricky_atomic_pointer() argument
/oneTBB/
H A DLICENSE.txt43 represent, as a whole, an original work of authorship. For the purposes
49 the original version of the Work and any modifications or additions
H A Dthird-party-programs.txt246 …d versions of such material be marked in reasonable ways as different from the original version; or
269 …a covered work, the recipient automatically receives a license from the original licensors, to run…
/oneTBB/examples/parallel_for/polygon_overlay/
H A DREADME.md11 … is that the area of the generated sub-polygons are subtracted from the original area of one of th…
/oneTBB/doc/main/tbb_userguide/Migration_Guide/
H A DTask_API.rst73 It is also possible to use ``oneapi::tbb::parallel_invoke`` to rewrite the original code and make it