Add zf_log to performance tests
On my machine I'm getting following results (real time, best of 3): 1 thread 10 threads 100 threads zf_log 0.466s 2.711s 2.608s spdlog 0.747s 5.121s 5.376s
This commit is contained in:
parent
e060bbf3ed
commit
51d8b2e359
@ -1,9 +1,9 @@
|
|||||||
CXX ?= g++
|
CXX ?= g++
|
||||||
CXXFLAGS = -march=native -Wall -Wextra -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
|
CXXFLAGS = -march=native -Wall -Wextra -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
|
||||||
CXX_RELEASE_FLAGS = -O3 -flto
|
CXX_RELEASE_FLAGS = -O3 -flto -DNDEBUG
|
||||||
|
|
||||||
|
|
||||||
binaries=spdlog-bench spdlog-bench-mt spdlog-async boost-bench boost-bench-mt glog-bench glog-bench-mt g2log-async easylogging-bench easylogging-bench-mt
|
binaries=spdlog-bench spdlog-bench-mt spdlog-async zf_log-bench zf_log-bench-mt boost-bench boost-bench-mt glog-bench glog-bench-mt g2log-async easylogging-bench easylogging-bench-mt
|
||||||
|
|
||||||
all: $(binaries)
|
all: $(binaries)
|
||||||
|
|
||||||
@ -15,9 +15,17 @@ spdlog-bench-mt: spdlog-bench-mt.cpp
|
|||||||
|
|
||||||
spdlog-async: spdlog-async.cpp
|
spdlog-async: spdlog-async.cpp
|
||||||
$(CXX) spdlog-async.cpp -o spdlog-async $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
|
$(CXX) spdlog-async.cpp -o spdlog-async $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
|
||||||
|
|
||||||
|
|
||||||
|
ZF_LOG_FLAGS = -I../../zf_log.git/zf_log/
|
||||||
|
zf_log-bench: zf_log-bench.cpp
|
||||||
|
$(CXX) zf_log-bench.cpp -o zf_log-bench $(CXXFLAGS) $(CXX_RELEASE_FLAGS) $(ZF_LOG_FLAGS)
|
||||||
|
|
||||||
|
zf_log-bench-mt: zf_log-bench-mt.cpp
|
||||||
|
$(CXX) zf_log-bench-mt.cpp -o zf_log-bench-mt $(CXXFLAGS) $(CXX_RELEASE_FLAGS) $(ZF_LOG_FLAGS)
|
||||||
|
|
||||||
|
|
||||||
BOOST_FLAGS = -DBOOST_LOG_DYN_LINK -I/usr/include -lboost_log -lboost_log_setup -lboost_filesystem -lboost_system -lboost_thread -lboost_regex -lboost_date_time -lboost_chrono
|
BOOST_FLAGS = -DBOOST_LOG_DYN_LINK -I/usr/include -lboost_log -lboost_log_setup -lboost_filesystem -lboost_system -lboost_thread -lboost_regex -lboost_date_time -lboost_chrono
|
||||||
|
|
||||||
boost-bench: boost-bench.cpp
|
boost-bench: boost-bench.cpp
|
||||||
$(CXX) boost-bench.cpp -o boost-bench $(CXXFLAGS) $(BOOST_FLAGS) $(CXX_RELEASE_FLAGS)
|
$(CXX) boost-bench.cpp -o boost-bench $(CXXFLAGS) $(BOOST_FLAGS) $(CXX_RELEASE_FLAGS)
|
||||||
|
@ -24,13 +24,13 @@ bench_async ()
|
|||||||
rm -f logs/*
|
rm -f logs/*
|
||||||
sleep 3
|
sleep 3
|
||||||
done;
|
done;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
echo "----------------------------------------------------------"
|
echo "----------------------------------------------------------"
|
||||||
echo "Single threaded benchmarks.. (1 thread, 1,000,000 lines)"
|
echo "Single threaded benchmarks.. (1 thread, 1,000,000 lines)"
|
||||||
echo "----------------------------------------------------------"
|
echo "----------------------------------------------------------"
|
||||||
for exe in boost-bench glog-bench easylogging-bench spdlog-bench;
|
for exe in boost-bench glog-bench easylogging-bench zf_log-bench spdlog-bench;
|
||||||
do
|
do
|
||||||
bench_exe $exe 1
|
bench_exe $exe 1
|
||||||
done;
|
done;
|
||||||
@ -38,7 +38,7 @@ done;
|
|||||||
echo "----------------------------------------------------------"
|
echo "----------------------------------------------------------"
|
||||||
echo "Multi threaded benchmarks.. (10 threads, 1,000,000 lines)"
|
echo "Multi threaded benchmarks.. (10 threads, 1,000,000 lines)"
|
||||||
echo "----------------------------------------------------------"
|
echo "----------------------------------------------------------"
|
||||||
for exe in boost-bench-mt glog-bench-mt easylogging-bench-mt spdlog-bench-mt;
|
for exe in boost-bench-mt glog-bench-mt easylogging-bench-mt zf_log-bench-mt spdlog-bench-mt;
|
||||||
do
|
do
|
||||||
bench_exe $exe 10
|
bench_exe $exe 10
|
||||||
done;
|
done;
|
||||||
@ -46,11 +46,10 @@ done;
|
|||||||
echo "----------------------------------------------------------"
|
echo "----------------------------------------------------------"
|
||||||
echo "Multi threaded benchmarks.. (100 threads, 1,000,000 lines)"
|
echo "Multi threaded benchmarks.. (100 threads, 1,000,000 lines)"
|
||||||
echo "----------------------------------------------------------"
|
echo "----------------------------------------------------------"
|
||||||
for exe in boost-bench-mt glog-bench-mt easylogging-bench-mt spdlog-bench-mt;
|
for exe in boost-bench-mt glog-bench-mt easylogging-bench-mt zf_log-bench-mt spdlog-bench-mt;
|
||||||
do
|
do
|
||||||
bench_exe $exe 100
|
bench_exe $exe 100
|
||||||
done;
|
done;
|
||||||
|
|
||||||
|
|
||||||
echo "---------------------------------------------------------------"
|
echo "---------------------------------------------------------------"
|
||||||
echo "Async, single threaded benchmark.. (1 thread, 1,000,000 lines)"
|
echo "Async, single threaded benchmark.. (1 thread, 1,000,000 lines)"
|
||||||
@ -68,7 +67,6 @@ do
|
|||||||
bench_async $exe 10
|
bench_async $exe 10
|
||||||
done;
|
done;
|
||||||
|
|
||||||
|
|
||||||
echo "---------------------------------------------------------------"
|
echo "---------------------------------------------------------------"
|
||||||
echo "Async, multi threaded benchmark.. (100 threads, 1,000,000 lines)"
|
echo "Async, multi threaded benchmark.. (100 threads, 1,000,000 lines)"
|
||||||
echo "---------------------------------------------------------------"
|
echo "---------------------------------------------------------------"
|
||||||
@ -76,6 +74,3 @@ for exe in spdlog-async g2log-async
|
|||||||
do
|
do
|
||||||
bench_async $exe 100
|
bench_async $exe 100
|
||||||
done;
|
done;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
56
bench/zf_log-bench-mt.cpp
Normal file
56
bench/zf_log-bench-mt.cpp
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
#include <thread>
|
||||||
|
#include <vector>
|
||||||
|
#include <atomic>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <zf_log.c>
|
||||||
|
|
||||||
|
const char g_path[] = "logs/zf_log.txt";
|
||||||
|
int g_fd;
|
||||||
|
|
||||||
|
static void output_callback(zf_log_message *msg)
|
||||||
|
{
|
||||||
|
*msg->p = '\n';
|
||||||
|
write(g_fd, msg->buf, msg->p - msg->buf + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
g_fd = open(g_path, O_APPEND|O_CREAT|O_WRONLY);
|
||||||
|
if (0 > g_fd)
|
||||||
|
{
|
||||||
|
ZF_LOGE_AUX(ZF_LOG_STDERR, "Failed to open log file: %s", g_path);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
zf_log_set_output_callback(ZF_LOG_PUT_STD, output_callback);
|
||||||
|
|
||||||
|
int thread_count = 10;
|
||||||
|
if(argc > 1)
|
||||||
|
thread_count = std::atoi(argv[1]);
|
||||||
|
int howmany = 1000000;
|
||||||
|
std::atomic<int > msg_counter {0};
|
||||||
|
vector<thread> threads;
|
||||||
|
|
||||||
|
for (int t = 0; t < thread_count; ++t)
|
||||||
|
{
|
||||||
|
threads.push_back(std::thread([&]()
|
||||||
|
{
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
int counter = ++msg_counter;
|
||||||
|
if (counter > howmany) break;
|
||||||
|
ZF_LOGI("zf_log message #%i: This is some text for your pleasure", counter);
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto &t:threads)
|
||||||
|
{
|
||||||
|
t.join();
|
||||||
|
};
|
||||||
|
close(g_fd);
|
||||||
|
return 0;
|
||||||
|
}
|
27
bench/zf_log-bench.cpp
Normal file
27
bench/zf_log-bench.cpp
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <zf_log.c>
|
||||||
|
|
||||||
|
const char g_path[] = "logs/zf_log.txt";
|
||||||
|
static FILE *g_f;
|
||||||
|
|
||||||
|
static void output_callback(zf_log_message *msg)
|
||||||
|
{
|
||||||
|
*msg->p = '\n';
|
||||||
|
fwrite(msg->buf, msg->p - msg->buf + 1, 1, g_f);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int, char* [])
|
||||||
|
{
|
||||||
|
g_f = fopen(g_path, "wb");
|
||||||
|
if (!g_f) {
|
||||||
|
ZF_LOGE_AUX(ZF_LOG_STDERR, "Failed to open log file: %s", g_path);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
zf_log_set_output_callback(ZF_LOG_PUT_STD, output_callback);
|
||||||
|
|
||||||
|
const int howmany = 1000000;
|
||||||
|
for(int i = 0 ; i < howmany; ++i)
|
||||||
|
ZF_LOGI("zf_log message #%i: This is some text for your pleasure", i);
|
||||||
|
fclose(g_f);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user