1
0
mirror of https://github.com/tearshark/librf.git synced 2024-10-01 15:57:07 +08:00
librf/benchmark/benchmark_async_mem.cpp

37 lines
647 B
C++

#include <chrono>
#include <iostream>
#include <string>
#include <conio.h>
#include <thread>
#include "librf.h"
const size_t N = 1000000;
volatile size_t globalValue = 0;
void resumable_main_benchmark_mem()
{
using namespace std::chrono;
resumef::state_t<void> st;
std::cout << sizeof(st) << " " << sizeof(resumef::promise_t<>) << std::endl;
for (size_t i = 0; i < N; ++i)
{
go[=]()->resumef::future_t<size_t>
{
for (size_t k = 0; k < 10; ++k)
{
globalValue += i * k;
co_yield k;
}
co_return 0;
};
}
resumef::this_scheduler()->run_until_notask();
(void)_getch();
}