libcopp 2.3.1
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
sample_benchmark_std_couroutine_task_create_generator.cpp
Go to the documentation of this file.
1// Copyright 2023 owent
2// std coroutine trivial task_future benchmark
3
7
8#include <inttypes.h>
9#include <stdint.h>
10#include <cstdio>
11#include <cstdlib>
12#include <cstring>
13#include <ctime>
14#include <vector>
15
16#if defined(LIBCOPP_MACRO_ENABLE_STD_COROUTINE) && LIBCOPP_MACRO_ENABLE_STD_COROUTINE
17
18# ifdef LIBCOTASK_MACRO_ENABLED
19
20# if defined(PROJECT_LIBCOPP_SAMPLE_HAS_CHRONO) && PROJECT_LIBCOPP_SAMPLE_HAS_CHRONO
21# include <chrono>
22# define CALC_CLOCK_T std::chrono::system_clock::time_point
23# define CALC_CLOCK_NOW() std::chrono::system_clock::now()
24# define CALC_MS_CLOCK(x) static_cast<int>(std::chrono::duration_cast<std::chrono::milliseconds>(x).count())
25# define CALC_NS_AVG_CLOCK(x, y) \
26 static_cast<long long>(std::chrono::duration_cast<std::chrono::nanoseconds>(x).count() / (y ? y : 1))
27# else
28# define CALC_CLOCK_T clock_t
29# define CALC_CLOCK_NOW() clock()
30# define CALC_MS_CLOCK(x) static_cast<int>((x) / (CLOCKS_PER_SEC / 1000))
31# define CALC_NS_AVG_CLOCK(x, y) (1000000LL * static_cast<long long>((x) / (CLOCKS_PER_SEC / 1000)) / (y ? y : 1))
32# endif
33
34using benchmark_task_future_type = cotask::task_future<int64_t, void>;
35using benchmark_generator_future_type = copp::generator_future<int64_t>;
36
37std::vector<benchmark_task_future_type> g_benchmark_task_list;
38std::vector<benchmark_generator_future_type::context_pointer_type> g_benchmark_generator_list;
39
40int switch_count = 100;
41int max_task_number = 100000;
42
43benchmark_task_future_type run_benchmark(size_t idx, int left_switch_count) {
44 int64_t result = 0;
45
46 while (left_switch_count-- >= 0) {
47 auto gen_res =
48 co_await benchmark_generator_future_type([idx](benchmark_generator_future_type::context_pointer_type ctx) {
49 g_benchmark_generator_list[idx] = std::move(ctx);
50 });
51 result += gen_res;
52 }
53
54 co_return result;
55}
56
57static void benchmark_round(int index) {
58 g_benchmark_task_list.reserve(static_cast<size_t>(max_task_number));
59 g_benchmark_generator_list.resize(static_cast<size_t>(max_task_number), nullptr);
60
61 printf("### Round: %d ###\n", index);
62
63 time_t begin_time = time(nullptr);
64 CALC_CLOCK_T begin_clock = CALC_CLOCK_NOW();
65
66 // create coroutines task
67 while (g_benchmark_task_list.size() < static_cast<size_t>(max_task_number)) {
68 g_benchmark_task_list.push_back(run_benchmark(g_benchmark_task_list.size(), switch_count));
69 }
70 for (auto& task_inst : g_benchmark_task_list) {
71 task_inst.start();
72 }
73
74 time_t end_time = time(nullptr);
75 CALC_CLOCK_T end_clock = CALC_CLOCK_NOW();
76 printf("create %d task(s) and generator(s), cost time: %d s, clock time: %d ms, avg: %lld ns\n", max_task_number,
77 static_cast<int>(end_time - begin_time), CALC_MS_CLOCK(end_clock - begin_clock),
78 CALC_NS_AVG_CLOCK(end_clock - begin_clock, max_task_number));
79
80 begin_time = end_time;
81 begin_clock = end_clock;
82
83 // yield & resume from runner
84 bool continue_flag = true;
85 long long real_switch_times = static_cast<long long>(0);
86 int32_t round = 0;
87
88 while (continue_flag) {
89 ++round;
90 continue_flag = false;
91 for (auto& generator_context : g_benchmark_generator_list) {
92 benchmark_generator_future_type::context_pointer_type move_context;
93 move_context.swap(generator_context);
94 if (move_context) {
95 move_context->set_value(round);
96 ++real_switch_times;
97 continue_flag = true;
98 }
99 }
100 }
101
102 end_time = time(nullptr);
103 end_clock = CALC_CLOCK_NOW();
104 printf("resume %d task(s) and generator(s) for %lld times, cost time: %d s, clock time: %d ms, avg: %lld ns\n",
105 max_task_number, real_switch_times, static_cast<int>(end_time - begin_time),
106 CALC_MS_CLOCK(end_clock - begin_clock), CALC_NS_AVG_CLOCK(end_clock - begin_clock, real_switch_times));
107
108 begin_time = end_time;
109 begin_clock = end_clock;
110
111 g_benchmark_task_list.clear();
112 g_benchmark_generator_list.clear();
113
114 end_time = time(nullptr);
115 end_clock = CALC_CLOCK_NOW();
116 printf("remove %d task(s), cost time: %d s, clock time: %d ms, avg: %lld ns\n", max_task_number,
117 static_cast<int>(end_time - begin_time), CALC_MS_CLOCK(end_clock - begin_clock),
118 CALC_NS_AVG_CLOCK(end_clock - begin_clock, max_task_number));
119}
120
121int main(int argc, char* argv[]) {
122 puts("###################### std task - create generator - trivial ###################");
123 printf("########## Cmd:");
124 for (int i = 0; i < argc; ++i) {
125 printf(" %s", argv[i]);
126 }
127 puts("");
128
129 if (argc > 1) {
130 max_task_number = atoi(argv[1]);
131 }
132
133 if (argc > 2) {
134 switch_count = atoi(argv[2]);
135 }
136
137 for (int i = 1; i <= 5; ++i) {
139 }
140 return 0;
141}
142# else
143int main() {
144 puts("task_future disabled.");
145 return 0;
146}
147# endif
148
149#else
150int main() {
151 puts("std coroutine is not supported by current compiler.");
152 return 0;
153}
154#endif
#define CALC_CLOCK_T
#define CALC_MS_CLOCK(x)
#define CALC_NS_AVG_CLOCK(x, y)
#define CALC_CLOCK_NOW()
static void benchmark_round(int index)