You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.8 KiB
85 lines
2.8 KiB
#pragma once
|
|
|
|
#include "../threading.h"
|
|
#include <thread>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
|
|
FILE *fp;
|
|
long long testing_throughput(uint32_t n_jobs, bool prompt = true){
|
|
using namespace std::chrono_literals;
|
|
printf("Threadpool througput test with %u jobs. Press any key to start.\n", n_jobs);
|
|
|
|
auto tp = ThreadPool(std::thread::hardware_concurrency());
|
|
getchar();
|
|
auto i = 0u;
|
|
fp = fopen("tmp.tmp", "wb");
|
|
auto time = std::chrono::high_resolution_clock::now();
|
|
while(i++ < n_jobs) {
|
|
payload_t payload;
|
|
payload.f = [](void* f) {fprintf(fp, "%d ", *(int*)f); free(f); return 0; };
|
|
payload.args = new int(i);
|
|
tp.enqueue_task(payload);
|
|
}
|
|
puts("done dispatching.");
|
|
while (tp.busy()) std::this_thread::sleep_for(1s);
|
|
auto t = (std::chrono::high_resolution_clock::now() - time).count();
|
|
printf("\nTr: %u, Ti: %lld \nThroughput: %lf transactions/ns\n", i, t, i/(double)(t));
|
|
//this_thread::sleep_for(2s);
|
|
fclose(fp);
|
|
return t;
|
|
}
|
|
|
|
long long testing_transaction(uint32_t n_burst, uint32_t n_batch,
|
|
uint32_t base_time, uint32_t var_time, bool prompt = true, FILE* _fp = stdout){
|
|
using namespace std::chrono_literals;
|
|
printf("Threadpool transaction test: burst: %u, batch: %u, time: [%u, %u].\n"
|
|
, n_burst, n_batch, base_time, var_time + base_time);
|
|
if (prompt) {
|
|
puts("Press any key to start.");
|
|
getchar();
|
|
}
|
|
auto tp = ThreadPool(std::thread::hardware_concurrency());
|
|
fp = _fp;
|
|
auto i = 0u, j = 0u;
|
|
auto time = std::chrono::high_resolution_clock::now();
|
|
while(j++ < n_batch){
|
|
i = 0u;
|
|
while(i++ < n_burst) {
|
|
payload_t payload;
|
|
payload.f = [](void* f) { fprintf(fp, "%d ", *(int*)f); free(f); return 0; };
|
|
payload.args = new int(j);
|
|
tp.enqueue_task(payload);
|
|
}
|
|
fflush(stdout);
|
|
std::this_thread::sleep_for(std::chrono::microseconds(rand()%var_time + base_time));
|
|
}
|
|
puts("done dispatching.");
|
|
while (tp.busy()) std::this_thread::sleep_for(1s);
|
|
auto t = (std::chrono::high_resolution_clock::now() - time).count();
|
|
printf("\nTr: %u, Ti: %lld \nThroughput: %lf transactions/ns\n", j*i, t, j*i/(double)(t));
|
|
return t;
|
|
|
|
}
|
|
|
|
long long testing_destruction(bool prompt = true){
|
|
fp = fopen("tmp.tmp", "wb");
|
|
if (prompt) {
|
|
puts("Press any key to start.");
|
|
getchar();
|
|
}
|
|
auto time = std::chrono::high_resolution_clock::now();
|
|
for(int i = 0; i < 8; ++i)
|
|
testing_transaction(0xfff, 0xff, 400, 100, false, fp);
|
|
for(int i = 0; i < 64; ++i)
|
|
testing_transaction(0xff, 0xf, 60, 20, false, fp);
|
|
for(int i = 0; i < 1024; ++i) {
|
|
auto tp = new ThreadPool(255);
|
|
delete tp;
|
|
}
|
|
return 0;
|
|
auto t = (std::chrono::high_resolution_clock::now() - time).count();
|
|
fclose(fp);
|
|
return t;
|
|
}
|