/dports/devel/taskflow/taskflow-3.2.0/taskflow/core/ |
H A D | executor.hpp | 100 tf::Future<void> run_n(Taskflow& taskflow, size_t N); 112 tf::Future<void> run_n(Taskflow&& taskflow, size_t N); 124 tf::Future<void> run_n(Taskflow& taskflow, size_t N, C&& callable); 136 tf::Future<void> run_n(Taskflow&& taskflow, size_t N, C&& callable); 1062 return run_n(f, 1, [](){}); in run() 1067 return run_n(std::move(f), 1, [](){}); in run() 1073 return run_n(f, 1, std::forward<C>(c)); in run() 1079 return run_n(std::move(f), 1, std::forward<C>(c)); in run() 1083 inline tf::Future<void> Executor::run_n(Taskflow& f, size_t repeat) { in run_n() function in tf::Executor 1084 return run_n(f, repeat, [](){}); in run_n() [all …]
|
/dports/net/rtpproxy/rtpproxy-2.1.1/src/ |
H A D | rtpp_netio_async.c | 84 long run_n; in rtpp_anetio_sthread() local 87 run_n = 0; in rtpp_anetio_sthread() 151 if ((run_n % 10000) == 0) { in rtpp_anetio_sthread() 153 args, run_n, runtime / (runtime + sleeptime), args->average_load.lastval); in rtpp_anetio_sthread() 159 run_n += 1; in rtpp_anetio_sthread()
|
/dports/devel/taskflow/taskflow-3.2.0/examples/ |
H A D | run.cpp | 47 executor.run_n(taskflow, 2).get(); in main() 53 executor.run_n(taskflow, 4, [] () { std::cout << "finishes 4 runs\n"; }) in main()
|
H A D | composition.cpp | 44 executor.run_n(f2, 3).get(); in composition_example_1()
|
/dports/cad/opentimer/OpenTimer-18d28ff/ot/taskflow/core/ |
H A D | executor.hpp | 88 std::future<void> run_n(Taskflow& taskflow, size_t N); 100 std::future<void> run_n(Taskflow& taskflow, size_t N, C&& callable); 790 return run_n(f, 1, [](){}); in run() 797 return run_n(f, 1, std::forward<C>(c)); in run() 801 inline std::future<void> Executor::run_n(Taskflow& f, size_t repeat) { in run_n() function in tf::Executor 802 return run_n(f, repeat, [](){}); in run_n() 807 std::future<void> Executor::run_n(Taskflow& f, size_t repeat, C&& c) { in run_n() function in tf::Executor
|
/dports/devel/taskflow/taskflow-3.2.0/unittests/ |
H A D | basics.cpp | 581 executor.run_n(f, 10).get(); in sequential_runs() 586 executor.run_n(f, 10).get(); in sequential_runs() 591 executor.run_n(f, 10); in sequential_runs() 1890 executor.run_n(f1, 100).get(); 1898 executor.run_n(f1, n).get(); 1951 executor.run_n(f2, n).get(); 2138 executor.run_n(taskflow, 10); in loop_cond() 2649 executor.run_n(tf3, 10); in hierarchical_condition() 2732 executor.run_n(taskflow, 1); in condition_subflow() 2733 executor.run_n(taskflow, 10); in condition_subflow() [all …]
|
H A D | cancellation.cpp | 59 fu = executor.run_n(taskflow, 100); 256 auto fu = executor.run_n(taskflow, 100); in __anonfe2c4ddb1502()
|
H A D | movable.cpp | 83 tf::Executor().run_n(std::move(taskflow), 3).wait();
|
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/taskflow-2.5.0/include/taskflow/core/ |
H A D | executor.hpp | 117 std::future<void> run_n(Taskflow& taskflow, size_t N); 129 std::future<void> run_n(Taskflow& taskflow, size_t N, C&& callable); 1022 return run_n(f, 1, [](){}); in run() 1028 return run_n(f, 1, std::forward<C>(c)); in run() 1032 inline std::future<void> Executor::run_n(Taskflow& f, size_t repeat) { in run_n() function in tf::Executor 1033 return run_n(f, repeat, [](){}); in run_n() 1038 std::future<void> Executor::run_n(Taskflow& f, size_t repeat, C&& c) { in run_n() function in tf::Executor
|
/dports/devel/py-rapidfuzz/rapidfuzz-1.8.0/3rd-party/taskflow/taskflow/core/ |
H A D | executor.hpp | 99 std::future<void> run_n(Taskflow& taskflow, size_t N); 111 std::future<void> run_n(Taskflow& taskflow, size_t N, C&& callable); 1183 return run_n(f, 1, [](){}); in run() 1189 return run_n(f, 1, std::forward<C>(c)); in run() 1193 inline std::future<void> Executor::run_n(Taskflow& f, size_t repeat) { in run_n() function in tf::Executor 1194 return run_n(f, repeat, [](){}); in run_n() 1199 std::future<void> Executor::run_n(Taskflow& f, size_t repeat, C&& c) { in run_n() function in tf::Executor
|
/dports/games/el/Eternal-Lands-1.9.5.9-1/pawn_scripts/ |
H A D | client_serv.inc | 37 run_n = 30,
|
/dports/devel/taskflow/taskflow-3.2.0/benchmarks/black_scholes/ |
H A D | taskflow.cpp | 23 executor.run_n(taskflow, NUM_RUNS).wait(); in bs_taskflow()
|
/dports/devel/taskflow/taskflow-3.2.0/sandbox/seismic/ |
H A D | taskflow.cpp | 23 executor.run_n(taskflow, num_frames).get(); in seismic_taskflow()
|
/dports/devel/taskflow/taskflow-3.2.0/sandbox/jacobi/ |
H A D | taskflow.cpp | 53 executor.run_n(flow, itnew).wait(); in taskflow()
|
/dports/devel/taskflow/taskflow-3.2.0/doxygen/examples/ |
H A D | flipcoins.dox | 65 executor.run_n(taskflow, rounds).wait(); 123 executor.run_n(taskflow, rounds).wait();
|
/dports/devel/taskflow/taskflow-3.2.0/doxygen/cookbook/ |
H A D | executor.dox | 35 tf::Executor::run_n, and tf::Executor::run_until to run a taskflow 58 17: executor.run_n(taskflow, 4); 60 19: executor.run_n(taskflow, 4, [](){ std::cout << "end of 4 runs"; }).wait(); 79 executor.run_n(taskflow, 10); // execution 2
|
H A D | dynamic_tasking.dox | 153 executor.run_n(taskflow, 5).wait();
|
/dports/devel/taskflow/taskflow-3.2.0/doxygen/releases/ |
H A D | release-3.2.0.dox | 46 + tf::Executor::run_n(Taskflow&&, size_t) 47 + tf::Executor::run_n(Taskflow&&, size_t, C&&)
|
H A D | release-2.1.0.dox | 20 @li New API (tf::Taskflow::run, tf::Taskflow::run_n, tf::Taskflow::run_until) to execute a framework
|
/dports/devel/taskflow/taskflow-3.2.0/unittests/sycl/ |
H A D | sycl_basics.cpp | 335 executor.run_n(taskflow, 10).wait();
|
/dports/devel/taskflow/taskflow-3.2.0/unittests/cuda/ |
H A D | cuda_basics.cu | 59 executor.run_n(taskflow, 100).wait(); in empty() 789 executor.run_n(taskflow, 10).wait(); in nested_runs() 826 executor.run_n(taskflow, 100).wait(); in nested_runs()
|
/dports/games/el/Eternal-Lands-1.9.5.9-1/ |
H A D | client_serv.h | 576 run_n = 30, enumerator
|
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/taskflow-2.5.0/ |
H A D | README.md | 184 executor.run_n(taskflow, 4); // runs the taskflow four times 590 ### *run/run_n/run_until* 598 executor.run_n(taskflow, 5); // runs a graph five times
|
/dports/devel/taskflow/taskflow-3.2.0/doxygen/ |
H A D | QuickStart.dox | 233 executor.run_n(taskflow, 4);
|
/dports/devel/taskflow/taskflow-3.2.0/ |
H A D | README.md | 336 executor.run_n(taskflow, 4);
|