| /oneTBB/test/conformance/ |
| H A D | conformance_blocked_range.cpp | 129 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); 143 … original.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 D | conformance_blocked_range2d.cpp | 156 oneapi::tbb::blocked_range2d<int> original(0, 100, 0, 100); variable 157 oneapi::tbb::blocked_range2d<int> first(original); 162 …original.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 D | conformance_blocked_range3d.cpp | 189 oneapi::tbb::blocked_range3d<int> original(0, 100, 0, 100, 0, 100); variable 190 oneapi::tbb::blocked_range3d<int> first(original); 195 …original.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 D | conformance_blocked_rangeNd.cpp | 260 oneapi::tbb::blocked_rangeNd<int, 2> original{{0, 100}, {0, 100}}; variable 261 oneapi::tbb::blocked_rangeNd<int, 2> first(original); 266 …original.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 D | conformance_parallel_for.cpp | 75 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 D | Exceptions_and_Cancellation.rst | 25 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 D | Non-Linear_Pipelines.rst | 23 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 D | parallel_for_os.rst | 64 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 D | parallel_reduce.rst | 73 The splitting constructor takes as arguments a reference to the original
|
| H A D | Working_on_the_Assembly_Line_pipeline.rst | 31 upon whether ``operator()`` is acting on the original or a copy. As a
|
| /oneTBB/test/common/ |
| H A D | utils.h | 410 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.h | 224 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 D | README.md | 8 … 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 D | Reference_Counting.rst | 118 updating the reference count by splitting the original weight between
|
| H A D | Divide_and_Conquer.rst | 204 The results will *not* be in the same order as the original serial
|
| /oneTBB/src/tbb/ |
| H A D | queuing_rw_mutex.cpp | 69 tricky_atomic_pointer( T*& original ) : ref(original) {}; in tricky_atomic_pointer() argument
|
| /oneTBB/ |
| H A D | LICENSE.txt | 43 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 D | third-party-programs.txt | 246 …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 D | README.md | 11 … 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 D | Task_API.rst | 73 It is also possible to use ``oneapi::tbb::parallel_invoke`` to rewrite the original code and make it
|