mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
110 lines
2.3 KiB
C++
110 lines
2.3 KiB
C++
#include <iostream>
|
|
#include <iomanip>
|
|
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
#include <Common/Stopwatch.h>
|
|
#include <Common/Exception.h>
|
|
#include <Common/ThreadPool.h>
|
|
|
|
|
|
int value = 0;
|
|
|
|
static void f() { ++value; }
|
|
static void * g(void *) { f(); return {}; }
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int PTHREAD_ERROR;
|
|
}
|
|
}
|
|
|
|
|
|
template <typename F>
|
|
void test(size_t n, const char * name, F && kernel)
|
|
{
|
|
value = 0;
|
|
|
|
Stopwatch watch;
|
|
Stopwatch watch_one;
|
|
double max_seconds = 0;
|
|
|
|
std::cerr << name << ":\n";
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
{
|
|
watch_one.restart();
|
|
|
|
kernel();
|
|
|
|
watch_one.stop();
|
|
if (watch_one.elapsedSeconds() > max_seconds)
|
|
max_seconds = watch_one.elapsedSeconds();
|
|
}
|
|
|
|
watch.stop();
|
|
|
|
std::cerr
|
|
<< std::fixed << std::setprecision(2)
|
|
<< n << " ops in "
|
|
<< watch.elapsedSeconds() << " sec., "
|
|
<< n / watch.elapsedSeconds() << " ops/sec., "
|
|
<< "avg latency: " << watch.elapsedSeconds() / n * 1000000 << " μs, "
|
|
<< "max latency: " << max_seconds * 1000000 << " μs "
|
|
<< "(res = " << value << ")"
|
|
<< std::endl;
|
|
}
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
size_t n = argc == 2 ? DB::parse<UInt64>(argv[1]) : 100000;
|
|
|
|
test(n, "Create and destroy ThreadPool each iteration", []
|
|
{
|
|
ThreadPool tp(1);
|
|
tp.scheduleOrThrowOnError(f);
|
|
tp.wait();
|
|
});
|
|
|
|
test(n, "pthread_create, pthread_join each iteration", []
|
|
{
|
|
pthread_t thread;
|
|
if (pthread_create(&thread, nullptr, g, nullptr))
|
|
DB::throwFromErrno("Cannot create thread.", DB::ErrorCodes::PTHREAD_ERROR);
|
|
if (pthread_join(thread, nullptr))
|
|
DB::throwFromErrno("Cannot join thread.", DB::ErrorCodes::PTHREAD_ERROR);
|
|
});
|
|
|
|
test(n, "Create and destroy std::thread each iteration", []
|
|
{
|
|
std::thread thread(f);
|
|
thread.join();
|
|
});
|
|
|
|
{
|
|
ThreadPool tp(1);
|
|
|
|
test(n, "Schedule job for Threadpool each iteration", [&tp]
|
|
{
|
|
tp.scheduleOrThrowOnError(f);
|
|
tp.wait();
|
|
});
|
|
}
|
|
|
|
{
|
|
ThreadPool tp(128);
|
|
|
|
test(n, "Schedule job for Threadpool with 128 threads each iteration", [&tp]
|
|
{
|
|
tp.scheduleOrThrowOnError(f);
|
|
tp.wait();
|
|
});
|
|
}
|
|
|
|
return 0;
|
|
}
|