| /oneTBB/include/oneapi/tbb/detail/ |
| H A D | _flow_graph_body_impl.h | 113 B get_body() { return body; } 118 B body; 122 template <typename B> 130 B get_body() { return body; } 135 B body; 147 B get_body() { return body; } 152 B body; 168 B body; 195 B body; 226 B body; [all …]
|
| H A D | _config.h | 95 #define __TBB_CONCAT_AUX(A,B) A##B argument 98 #define __TBB_CONCAT(A,B) __TBB_CONCAT_AUX(A,B) argument
|
| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | Update_state.cpp | 37 __m128i* B, in sum_offset() argument 45 B[i] = _mm_xor_si128(B[i], tmp); in sum_offset() 101 __m128i X[906], A[900], B[900], C[900]; in UpdateState() local 109 B[i].m128i_u32[0] = 0; in UpdateState() 110 B[i].m128i_u32[1] = 0; in UpdateState() 111 B[i].m128i_u32[2] = 0; in UpdateState() 112 B[i].m128i_u32[3] = 0; in UpdateState() 156 sum_offset(X, A, B, C, size_sse_ar, 0); in UpdateState() 159 sum_offset(X, A, B, C, size_sse_ar, size_sse_row); in UpdateState() 169 sum_offset(X, A, B, C, size_sse_ar, 0); in UpdateState() [all …]
|
| /oneTBB/examples/graph/logic_sim/ |
| H A D | test_all.cpp | 340 toggle B(g); in main() local 377 B.flip(); in main() 386 B.flip(); in main() 416 B.flip(); in main() 426 B.flip(); in main() 457 B.flip(); in main() 467 B.flip(); in main() 479 B.flip(); in main() 490 B.flip(); in main() 542 B[0].flip(); in main() [all …]
|
| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | trace.simple.cpp | 82 int R, G, B; in render_one_pixel() local 111 B = (int)(col.b * 255); in render_one_pixel() 112 if (B > 255) in render_one_pixel() 113 B = 255; in render_one_pixel() 114 else if (B < 0) in render_one_pixel() 115 B = 0; in render_one_pixel() 117 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | trace.serial.cpp | 82 int R, G, B; in render_one_pixel() local 140 B = (int)(col.b * 255); in render_one_pixel() 141 if (B > 255) in render_one_pixel() 142 B = 255; in render_one_pixel() 143 else if (B < 0) in render_one_pixel() 144 B = 0; in render_one_pixel() 146 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | trace.omp.cpp | 83 int R, G, B; in render_one_pixel() local 142 B = (int)(col.b * 255); in render_one_pixel() 143 if (B > 255) in render_one_pixel() 144 B = 255; in render_one_pixel() 145 else if (B < 0) in render_one_pixel() 146 B = 0; in render_one_pixel() 148 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | trace.tbb1d.cpp | 90 int R, G, B; in render_one_pixel() local 149 B = (int)(col.b * 255); in render_one_pixel() 150 if (B > 255) in render_one_pixel() 151 B = 255; in render_one_pixel() 152 else if (B < 0) in render_one_pixel() 153 B = 0; in render_one_pixel() 155 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | trace.threads.cpp | 94 int R, G, B; in render_one_pixel() local 154 B = (int)(col.b * 255); in render_one_pixel() 155 if (B > 255) in render_one_pixel() 156 B = 255; in render_one_pixel() 157 else if (B < 0) in render_one_pixel() 158 B = 0; in render_one_pixel() 160 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | trace.taskq.cpp | 90 int R, G, B; in render_one_pixel() local 149 B = (int)(col.b * 255); in render_one_pixel() 150 if (B > 255) in render_one_pixel() 151 B = 255; in render_one_pixel() 152 else if (B < 0) in render_one_pixel() 153 B = 0; in render_one_pixel() 155 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | trace.tbb.cpp | 119 int R, G, B; in render_one_pixel() local 178 B = (int)(col.b * 255); in render_one_pixel() 179 if (B > 255) in render_one_pixel() 180 B = 255; in render_one_pixel() 181 else if (B < 0) in render_one_pixel() 182 B = 0; in render_one_pixel() 187 B = int((1.0 - alpha) * B + alpha * blend[2]); in render_one_pixel() 190 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | trace.threads2d.cpp | 97 int R, G, B; in render_one_pixel() local 157 B = (int)(col.b * 255); in render_one_pixel() 158 if (B > 255) in render_one_pixel() 159 B = 255; in render_one_pixel() 160 else if (B < 0) in render_one_pixel() 161 B = 0; in render_one_pixel() 163 return video->get_color(R, G, B); in render_one_pixel()
|
| H A D | vector.cpp | 91 void VAddS(flt a, vector *A, vector *B, vector *C) { in VAddS() argument 92 C->x = (a * A->x) + B->x; in VAddS() 93 C->y = (a * A->y) + B->y; in VAddS() 94 C->z = (a * A->z) + B->z; in VAddS()
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Dependence_Graph.rst | 41 Function B must complete before C and D start executing; and E must 44 B and E or C and F. 91 node_t B(g, [](msg_t){ b(); } ); 96 make_edge(A, B); 97 make_edge(B, C); 98 make_edge(B, D); 109 does not start until both B and E are finished. While a task is waiting
|
| H A D | Cancellation_and_Nested_Parallelism.rst | 52 c. Throw exception from C to B. 55 #. Handle exception in B: 58 a. Capture exception in B. 61 b. Cancel tasks in B and, by downwards propagation, in D. 64 c. Throw an exception out of B to A.
|
| H A D | Non-Linear_Pipelines.rst | 30 filters. This is because filters A and B could process the token 43 filters A, B, D and E above may need to be modified in order to properly
|
| H A D | appendix_A.rst | 32 and subsequently thread B runs on the same physical thread, B will tend
|
| H A D | Controlling_Chunking_os.rst | 76 - Case B 83 overhead. Both Case A and Case B have the same total gray area. Case A 85 overhead. Case B shows how a large grainsize reduces this proportion, at
|
| H A D | appendix_B.rst | 3 Appendix B Mixing With Other Threading Packages
|
| /oneTBB/test/tbb/ |
| H A D | test_openmp.cpp | 146 data_type A[M], B[N]; variable 153 F(actual, A, m, B, n, p); in RunTest() 168 for (int i = 0; i < n; ++i) B[i] = data_type(1 + i / 7); 169 SerialConvolve( expected, A, m, B, n );
|
| /oneTBB/doc/main/tbb_userguide/design_patterns/ |
| H A D | General_References.rst | 12 - T. Mattson, B. Sanders, B. Massingill. Patterns for Parallel Programming (2005)
|
| /oneTBB/integration/windows/sys_check/ |
| H A D | sys_check.bat | 18 exit /B 0
|
| /oneTBB/examples/test_all/fibonacci/ |
| H A D | fibonacci.cpp | 127 Matrix2x2 A, B; in SerialQueueFib() local 133 while (!Q.try_pop(B)) in SerialQueueFib() 135 Q.push(A * B); in SerialQueueFib()
|
| /oneTBB/integration/windows/oneapi/ |
| H A D | vars.bat | 56 exit /B 0
|
| /oneTBB/integration/windows/env/ |
| H A D | vars.bat | 93 exit /B 0
|