-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathstd.cpp
More file actions
23 lines (21 loc) · 677 Bytes
/
Copy pathstd.cpp
File metadata and controls
23 lines (21 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "async_task.hpp"
#include <future>
// async_task cstdutation
void async_task_std(unsigned, size_t num_tasks) {
std::vector<std::future<void>> futures;
std::atomic<size_t> counter(0);
for(size_t i=0; i<num_tasks; i++){
futures.emplace_back(std::async([&](){
func(counter);
}));
}
for(auto& fu : futures) {
fu.get();
}
}
std::chrono::microseconds measure_time_std(unsigned num_threads, size_t num_tasks) {
auto beg = std::chrono::high_resolution_clock::now();
async_task_std(num_threads, num_tasks);
auto end = std::chrono::high_resolution_clock::now();
return std::chrono::duration_cast<std::chrono::microseconds>(end - beg);
}