Home
last modified time | relevance | path

Searched refs:scan (Results 1 – 8 of 8) sorted by relevance

/oneTBB/test/conformance/
H A Dconformance_parallel_scan.cpp165 auto scan = &test_invoke::SmartRange<test_invoke::SmartValue>::scan; variable
168 test_pscan_invoke(desired_vector, change_vector, range, identity, scan, combine);
169 …test_pscan_invoke(desired_vector, change_vector, range, identity, scan, combine, oneapi::tbb::auto…
170 …test_pscan_invoke(desired_vector, change_vector, range, identity, scan, combine, oneapi::tbb::simp…
/oneTBB/include/oneapi/tbb/
H A Dparallel_scan.h510 lambda_scan_body( const Value& identity, const Scan& scan, const ReverseJoin& rev_join ) in lambda_scan_body() argument
513 , m_scan(scan) in lambda_scan_body()
589 Value parallel_scan( const Range& range, const Value& identity, const Scan& scan, const ReverseJoin… in __TBB_requires()
590 lambda_scan_body<Range, Value, Scan, ReverseJoin> body(identity, scan, reverse_join); in __TBB_requires()
600 Value parallel_scan( const Range& range, const Value& identity, const Scan& scan, const ReverseJoin… in __TBB_requires()
602 lambda_scan_body<Range, Value, Scan, ReverseJoin> body(identity, scan, reverse_join); in __TBB_requires()
612 Value parallel_scan( const Range& range, const Value& identity, const Scan& scan, const ReverseJoin… in __TBB_requires()
614 lambda_scan_body<Range, Value, Scan, ReverseJoin> body(identity, scan, reverse_join); in __TBB_requires()
/oneTBB/cmake/
H A Dmemcheck.cmake15 option(TBB_VALGRIND_MEMCHECK "Enable scan for memory leaks using Valgrind" OFF)
29 message(STATUS "Found Valgrind to run memory leak scan")
50 COMMENT "Run memcheck scan on specified list")
H A DREADME.md19 TBB_VALGRIND_MEMCHECK:BOOL - Enable scan for memory leaks using Valgrind (OFF by default)
210 make -j memcheck-<test name> # or memcheck-all to scan all tests
/oneTBB/test/tbb/
H A Dtest_parallel_scan.cpp219 T ParallelScanFunctionalInvoker(const Range& range, T idx, const Scan& scan, const ReverseJoin& rev… in ParallelScanFunctionalInvoker() argument
222 return tbb::parallel_scan(range, idx, scan, reverse_join); in ParallelScanFunctionalInvoker()
225 return tbb::parallel_scan(range, idx, scan, reverse_join, tbb::simple_partitioner()); in ParallelScanFunctionalInvoker()
228 return tbb::parallel_scan(range, idx, scan, reverse_join, tbb::auto_partitioner()); in ParallelScanFunctionalInvoker()
/oneTBB/test/common/
H A Dtest_invoke.h60 Value scan(const Value& idx, bool is_final_scan) const { in scan() function
/oneTBB/.github/workflows/
H A Dci.yml41 - name: Run scan
51 - name: Run scan
/oneTBB/examples/parallel_for/tachyon/
H A DREADME.md18 …ilding Blocks (oneTBB) and `blocked_range` to parallelize over tasks that are groups of scan-lines.