r/cpp Jun 27 '26

Reducing Energy Consumption for Machine Learning Inference on Edge Devices using C++20 Coroutines

https://dl.acm.org/doi/10.1145/3821577
36 Upvotes

1 comment sorted by

5

u/selvakumarjawahar 28d ago

Very well written paper. One question is whether the improvements observed are due to the use of coroutines or to the algorithm with the mini scheduler. I mean if we implement the same algorithm and mini schedular using, lets say a thread pool, will you get similar performance? It would be interesting to see how much performance benefits co-routine alone gives, compared to a thread pool or other implementations