mirror of https://github.com/xqemu/xqemu.git
test-coroutine: test cost introduced by coroutine
This test runs dummy function with coroutine by using two enter and one yield since which is a common usage. So we can see the cost introduced by corouting for running one function, for example: Run operation 20000000 iterations 4.841071 s, 4131K operations/s 242ns per coroutine Signed-off-by: Ming Lei <ming.lei@canonical.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
a1cb48a3bf
commit
61ff8cfbec
|
@ -311,6 +311,35 @@ static void perf_baseline(void)
|
||||||
maxcycles, duration);
|
maxcycles, duration);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static __attribute__((noinline)) void perf_cost_func(void *opaque)
|
||||||
|
{
|
||||||
|
qemu_coroutine_yield();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void perf_cost(void)
|
||||||
|
{
|
||||||
|
const unsigned long maxcycles = 40000000;
|
||||||
|
unsigned long i = 0;
|
||||||
|
double duration;
|
||||||
|
unsigned long ops;
|
||||||
|
Coroutine *co;
|
||||||
|
|
||||||
|
g_test_timer_start();
|
||||||
|
while (i++ < maxcycles) {
|
||||||
|
co = qemu_coroutine_create(perf_cost_func);
|
||||||
|
qemu_coroutine_enter(co, &i);
|
||||||
|
qemu_coroutine_enter(co, NULL);
|
||||||
|
}
|
||||||
|
duration = g_test_timer_elapsed();
|
||||||
|
ops = (long)(maxcycles / (duration * 1000));
|
||||||
|
|
||||||
|
g_test_message("Run operation %lu iterations %f s, %luK operations/s, "
|
||||||
|
"%luns per coroutine",
|
||||||
|
maxcycles,
|
||||||
|
duration, ops,
|
||||||
|
(unsigned long)(1000000000 * duration) / maxcycles);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
g_test_init(&argc, &argv, NULL);
|
g_test_init(&argc, &argv, NULL);
|
||||||
|
@ -325,6 +354,7 @@ int main(int argc, char **argv)
|
||||||
g_test_add_func("/perf/nesting", perf_nesting);
|
g_test_add_func("/perf/nesting", perf_nesting);
|
||||||
g_test_add_func("/perf/yield", perf_yield);
|
g_test_add_func("/perf/yield", perf_yield);
|
||||||
g_test_add_func("/perf/function-call", perf_baseline);
|
g_test_add_func("/perf/function-call", perf_baseline);
|
||||||
|
g_test_add_func("/perf/cost", perf_cost);
|
||||||
}
|
}
|
||||||
return g_test_run();
|
return g_test_run();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue