Add 1000-concurrency-result report

This commit is contained in:
yhirose
2020-03-21 15:49:26 +00:00
parent 914c8860e8
commit b0af78e340
7 changed files with 286 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#include <thread>
#include <iostream>
using namespace std;
int main(void) {
cout << std::thread::hardware_concurrency() << endl;
}