Home
last modified time | relevance | path

Searched refs:for_each_index (Results 1 – 25 of 450) sorted by relevance

12345678910>>...18

/dports/devel/taskflow/taskflow-3.2.0/benchmarks/matrix_multiplication/
H A Dtaskflow.cpp10 auto init_a = taskflow.for_each_index(0, N, 1, [&] (int i) { in matrix_multiplication_taskflow()
16 auto init_b = taskflow.for_each_index(0, N, 1, [&] (int i) { in matrix_multiplication_taskflow()
22 auto init_c = taskflow.for_each_index(0, N, 1, [&] (int i) { in matrix_multiplication_taskflow()
28 auto comp_c = taskflow.for_each_index(0, N, 1, [&] (int i) { in matrix_multiplication_taskflow()
/dports/devel/taskflow/taskflow-3.2.0/examples/
H A Dparallel_for.cpp24 void for_each_index(int N) { in for_each_index() function
30 taskflow.for_each_index(0, N, 2, [] (int i) { in for_each_index()
43 for_each_index(100); in main()
/dports/devel/taskflow/taskflow-3.2.0/taskflow/cuda/cuda_algorithm/
H A Dcuda_for_each.hpp192 cudaTask cudaFlow::for_each_index(I first, I last, I inc, C c) { in for_each_index() function in tf::cudaFlow
195 cap.for_each_index(first, last, inc, c); in for_each_index()
210 void cudaFlow::for_each_index(cudaTask task, I first, I last, I inc, C c) { in for_each_index() function in tf::cudaFlow
213 cap.for_each_index(first, last, inc, c); in for_each_index()
232 cudaTask cudaFlowCapturer::for_each_index(I beg, I end, I inc, C c) { in for_each_index() function in tf::cudaFlowCapturer
250 void cudaFlowCapturer::for_each_index( in for_each_index() function in tf::cudaFlowCapturer
/dports/math/tblis/tblis-1.2.0/src/external/marray/include/
H A Dindexed_varray_base.hpp138 void for_each_index(Func&& f) const in for_each_index() function in MArray::indexed_varray_base
155 void for_each_index(Func&& f, detail::integer_sequence<unsigned, I...>) const in for_each_index() function in MArray::indexed_varray_base
407 void for_each_index(Func&& f) const in for_each_index() function in MArray::indexed_varray_base
409 for_each_index<varray_view<ctype>>(std::forward<Func>(f)); in for_each_index()
413 void for_each_index(Func&& f) in for_each_index() function in MArray::indexed_varray_base
415 for_each_index<varray_view<Type>>(std::forward<Func>(f)); in for_each_index()
419 void for_each_index(Func&& f) const in for_each_index() function in MArray::indexed_varray_base
422 for_each_index<marray_view<ctype, DenseNDim>>(std::forward<Func>(f), in for_each_index()
427 void for_each_index(Func&& f) in for_each_index() function in MArray::indexed_varray_base
430 for_each_index<marray_view<Type, DenseNDim>>(std::forward<Func>(f), in for_each_index()
H A Dindexed_dpd_varray_base.hpp222 void for_each_index(Func&& f) const in for_each_index() function in MArray::indexed_dpd_varray_base
240 void for_each_index(Func&& f, detail::integer_sequence<unsigned, I...>) const in for_each_index() function in MArray::indexed_dpd_varray_base
517 void for_each_index(Func&& f) const in for_each_index() function in MArray::indexed_dpd_varray_base
519 for_each_index<dpd_varray_view<ctype>>(std::forward<Func>(f)); in for_each_index()
523 void for_each_index(Func&& f) in for_each_index() function in MArray::indexed_dpd_varray_base
525 for_each_index<dpd_varray_view<Type>>(std::forward<Func>(f)); in for_each_index()
529 void for_each_index(Func&& f) const in for_each_index() function in MArray::indexed_dpd_varray_base
532 for_each_index<dpd_marray_view<ctype, DenseNDim>>(std::forward<Func>(f), in for_each_index()
537 void for_each_index(Func&& f) in for_each_index() function in MArray::indexed_dpd_varray_base
540 for_each_index<dpd_marray_view<Type, DenseNDim>>(std::forward<Func>(f), in for_each_index()
/dports/devel/taskflow/taskflow-3.2.0/doxygen/cudaflow_algorithms/
H A Dcudaflow_for_each.dox6 and tf::cudaFlow::for_each_index, for creating tasks to perform
14 The task created by tf::cudaFlow::for_each_index(I first, I last, I step, C callable)
39 cf.for_each_index(0, 100, 1, [gpu_data] __device__ (int idx) {
80 tf::cudaFlowCapturer::for_each and tf::cudaFlowCapturer::for_each_index.
/dports/devel/taskflow/taskflow-3.2.0/unittests/sycl/
H A Dsycl_algorithms.cpp72 void for_each_index() { in for_each_index() function
94 auto kernel1 = cf.for_each_index( in for_each_index()
98 auto kernel2 = cf.for_each_index( in for_each_index()
125 for_each_index<int>();
129 for_each_index<float>();
133 for_each_index<double>();
/dports/devel/taskflow/taskflow-3.2.0/doxygen/algorithms/
H A Dfor_each.dox12 The task created by tf::Taskflow::for_each_index(B&& first, E&& last, S&& step, C&& callable) repre…
29 taskflow.for_each_index(0, 100, 2, [](int i) { }); // 50 loops with a + step
30 taskflow.for_each_index(100, 0, -2, [](int i) { }); // 50 loops with a - step
43 By default, tf::Taskflow::for_each_index creates a task that spawns a subflow (see @ref DynamicTask…
55 auto pf = taskflow.for_each_index(std::ref(first), std::ref(last), 1,
62 // auto pf = taskflow.for_each_index(first, last, 1, [&](int i) {
/dports/devel/taskflow/taskflow-3.2.0/doxygen/sycl_algorithms/
H A Dsycl_for_each.dox6 tf::syclFlow::for_each and tf::syclFlow::for_each_index,
15 The task created by tf::syclFlow::for_each_index(I first, I last, I step, C&& callable)
39 sf.for_each_index(0, 100, 1, [gpu_data] (int idx) {
/dports/devel/taskflow/taskflow-3.2.0/taskflow/sycl/sycl_algorithm/
H A Dsycl_for_each.hpp67 syclTask syclFlow::for_each_index(I beg, I end, I inc, C&& op) { in for_each_index() function in tf::syclFlow
83 void syclFlow::for_each_index(syclTask task, I beg, I end, I inc, C&& op) { in for_each_index() function in tf::syclFlow
/dports/math/tblis/tblis-1.2.0/src/external/marray/test/
H A Dindexed_varray.cxx153 v1.for_each_index( in TEST()
180 v2.for_each_index( in TEST()
207 v1.for_each_index<2,2>( in TEST()
231 v2.for_each_index<2,2>( in TEST()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/lang/gcc8/gcc-8.5.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/
H A Dtree-ssa-loop.h65 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/lang/gnat_util/gcc-6-20180516/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/lang/gcc9/gcc-9.4.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/
H A Dtree-ssa-loop.h66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
/dports/devel/taskflow/taskflow-3.2.0/doxygen/releases/
H A Drelease-2.6.0.dox23 @li redesigned tf::Taskflow::for_each and tf::Taskflow::for_each_index using OpenMP-styled scheduli…
24 @li added multiple unit tests for tf::Taskflow::for_each and tf::Taskflow::for_each_index at differ…
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/
H A Dtree-ssa-loop.h67 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);

12345678910>>...18