| /oneTBB/examples/graph/logic_sim/ |
| H A D | test_all.cpp | 71 led output( in main() local 82 output.display(); in main() 87 output.display(); in main() 104 output.display(); in main() 109 output.display(); in main() 129 output.display(); in main() 134 output.display(); in main() 140 output.display(); in main() 145 output.display(); in main() 168 output.display(); in main() [all …]
|
| H A D | README.md | 22 * `verbose` - prints diagnostic output to screen. 23 * `silent` limits output to timing info; overrides verbose
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Predefined_Node_Types.rst | 25 - A single-output node, with a generic output type. 26 …es a user body to generate its output. Its body is invoked if downstream nodes have accepted the p… 27 …Otherwise, the previous output is temporarily buffered until it is accepted downstream and then th… 29 …output node that broadcasts its output to all successors. Has generic input and output types. Exec… 31 …output node that broadcasts its output to all successors. It has a single input that requires 1… 33 …output node. It has a generic input type and several generic output types. It executes a user b… 35 …- A single-input, single-output node that broadcasts each message received to all successors. I… 37 …- Single-input, single-output nodes that buffer messages and send their output to one successor… 41 …output node. The input type is a tuple of generic types and there is one output port for each o… 45 …- A multi-input, single output node that broadcasts its output to all successors. The main inpu… [all …]
|
| H A D | Flow_Graph_Reservation.rst | 10 every input before they can create an output message. The reserving 13 an output message it temporarily reserves a message at each input port, 14 and only if all input ports succeed reserving messages will an output 53 ``buffer_nodes`` buffer their output, so they accept a switch of their 54 output edge from push to pull mode. ``broadcast_nodes`` do not buffer 84 printf("join_node output == (%d,%d)\n",get<0>(tuple_out), get<1>(tuple_out) ); 217 - ``jn`` constructs the output message ``tuple<3,4>``. 254 complete. The output of this code is 260 join_node output == (3,4)
|
| H A D | Working_on_the_Assembly_Line_pipeline.rst | 46 - Write chunk to output file 54 as they are written in the proper order to the output file. Though the 55 raw I/O is sequential, the formatting of input and output can be moved 134 gaining tokens because the output filter cannot keep up. This situation 139 until another token is destroyed at the output filter. 150 - The *outputType* specifies the type of values output by a filter. For 151 the output filter, the type is ``void``. 158 - The *functor* specifies how to produce an output value from an input 187 filter reads chunks from a sequential file and the output filter must 201 The functors for each filter are explained in detail now. The output
|
| H A D | Nodes.rst | 10 may generate zero or more output messages. Some nodes require more than 11 one input message or generate more than one output message. 20 represents a simple function with one input and one output. The
|
| H A D | broadcast_or_send.rst | 8 their output to a single successor or broadcast to all successors. The 132 to understand whether the output will broadcast to all of the
|
| /oneTBB/examples/parallel_pipeline/square/ |
| H A D | README.md | 19 …eads=value] [input-file=value] [output-file=value] [max-slice-size=value] [silent] [-h] [n-of-thre… 24 * `output`- file is an output file name. 26 * `silent` - no output except elapsed time.
|
| H A D | CMakeLists.txt | 33 set(ARGS 0 input.txt output.txt) 34 set(PERF_ARGS auto input.txt output.txt silent)
|
| /oneTBB/examples/test_all/fibonacci/ |
| H A D | fibonacci.cpp | 365 value *const output; member 367 parallel_scanFibBody(value *output_) : product(MatrixIdentity), output(output_) {} in parallel_scanFibBody() 371 output(b.output) {} in parallel_scanFibBody() 393 output[k] = product.v[0][1]; in operator ()() 400 value *output = new value[n]; in parallel_scanFib() local 401 parallel_scanFibBody b(output); in parallel_scanFib() 405 assert(n < 2 || output[n - 2] + output[n - 1] == b.product.v[0][1]); in parallel_scanFib() 406 delete[] output; in parallel_scanFib()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_parallel_scan.cpp | 90 std::vector<int> output(size); 100 Body<int, std::plus<int>> body(input, output, 0); 102 CHECK((control == output)); 110 std::vector<std::size_t> output(size); 127 output[i] = temp; in __anonb56fb5590102() 136 CHECK((control==output));
|
| H A D | conformance_parallel_pipeline.cpp | 180 std::vector<double> output(max_counter); 184 RootSequence(input.cbegin(), input.cend(), output.begin()); 186 CHECK_MESSAGE(output[i] == input[i]*input[i], "pipeline result is incorrect");
|
| /oneTBB/doc/main/tbb_userguide/Migration_Guide/ |
| H A D | Mixing_Two_Runtimes.rst | 15 both runtimes are loaded there will be two blocks of output, for example: 17 oneTBB possible output: 28 TBB possible output:
|
| /oneTBB/examples/concurrent_hash_map/count_strings/ |
| H A D | README.md | 23 * `verbose` - prints diagnostic output to screen. 24 * `silent` - no output except elapsed time.
|
| /oneTBB/examples/graph/fgbzip2/ |
| H A D | README.md | 2 …f bzip2 block-sorting file compressor that uses `oneapi::tbb::flow`. The output of this applicatio… 25 * `-v` - prints diagnostic output to screen.
|
| /oneTBB/doc/ |
| H A D | Doxyfile.in | 52 # the logo to the output directory. 64 # directories (in 2 levels) under the output directory of each output format and 697 # output files in an output format independent way. To create the layout file 1220 # in the HTML output. For a value of 0 the output will use grayscales only. A 1229 # gradually make the output lighter, whereas values above 100 make the output 1332 # written to the html output directory. 1384 # the HTML output folder. 1685 # written to the output directory. 1861 # output) instead of page references. This makes the output suitable for online 1963 # of the XML output. [all …]
|
| H A D | README.md | 13 Do the following to generate HTML output of the documentation:
|
| /oneTBB/examples/graph/binpack/ |
| H A D | README.md | 24 * `verbose` - prints diagnostic output to screen. 25 * `silent` - limits output to timing info; overrides verbose.
|
| /oneTBB/examples/concurrent_priority_queue/shortpath/ |
| H A D | README.md | 32 * `verbose` - prints diagnostic output to screen. 33 * `silent` - no output except elapsed time.
|
| /oneTBB/test/tbb/ |
| H A D | test_async_node.cpp | 365 output_type output; in process() local 366 wrapper_helper<output_type, output_type>::copy_value(work.input, output); in process() 367 wrapper_helper<output_type, output_type>::check(work.input, output); in process() 368 work.gateway->try_put(output); in process() 435 output_type output; in run() local 436 wrapper_helper<output_type, output_type>::check(input, output); in run()
|
| /oneTBB/.github/workflows/ |
| H A D | ci.yml | 142 ctest -R python_test --output-on-failure --timeout ${TEST_TIMEOUT} 180 ctest --timeout ${TEST_TIMEOUT} --output-on-failure 206 ctest --timeout ${TEST_TIMEOUT} --output-on-failure 242 ctest -C ${{ matrix.build_type }} --timeout ${env:TEST_TIMEOUT} --output-on-failure
|
| /oneTBB/examples/graph/cholesky/ |
| H A D | README.md | 33 …to output files: <output_prefix>_posdef.txt and <output_prefix>_X.txt; where `X` is the algorithm …
|
| /oneTBB/examples/parallel_reduce/primes/ |
| H A D | README.md | 25 * `silent` - no output except elapsed time.
|
| /oneTBB/examples/parallel_reduce/pi/ |
| H A D | README.md | 24 * `silent` - no output except the elapsed time.
|
| /oneTBB/examples/graph/dining_philosophers/ |
| H A D | README.md | 25 * `verbose` - prints diagnostic output to screen.
|