Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
214c6778
Commit
214c6778
authored
Sep 18, 2016
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add async with null sink bench
parent
e97621d6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
153 additions
and
1 deletion
+153
-1
bench/Makefile
bench/Makefile
+6
-1
bench/spdlog-null-async.cpp
bench/spdlog-null-async.cpp
+112
-0
bench/utils.h
bench/utils.h
+35
-0
No files found.
bench/Makefile
View file @
214c6778
...
...
@@ -3,7 +3,7 @@ CXXFLAGS = -march=native -Wall -Wextra -pedantic -std=c++11 -pthread -Wl,--no-as
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
spdlog-null-async
boost-bench boost-bench-mt glog-bench glog-bench-mt g2log-async easylogging-bench easylogging-bench-mt
all
:
$(binaries)
...
...
@@ -17,6 +17,11 @@ spdlog-async: spdlog-async.cpp
$(CXX)
spdlog-async.cpp
-o
spdlog-async
$(CXXFLAGS)
$(CXX_RELEASE_FLAGS)
spdlog-null-async
:
spdlog-null-async.cpp
$(CXX)
spdlog-null-async.cpp
-o
spdlog-null-async
$(CXXFLAGS)
$(CXX_RELEASE_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-bench
:
boost-bench.cpp
...
...
bench/spdlog-null-async.cpp
0 → 100644
View file @
214c6778
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
//
// bench.cpp : spdlog benchmarks
//
#include <atomic>
#include <cstdlib> // EXIT_FAILURE
#include <iostream>
#include <memory>
#include <string>
#include <thread>
#include "spdlog/spdlog.h"
#include "spdlog/async_logger.h"
#include "spdlog/sinks/null_sink.h"
#include "utils.h"
using
namespace
std
;
using
namespace
std
::
chrono
;
using
namespace
spdlog
;
using
namespace
spdlog
::
sinks
;
using
namespace
utils
;
size_t
bench_as
(
int
howmany
,
std
::
shared_ptr
<
spdlog
::
logger
>
log
,
int
thread_count
);
int
main
(
int
argc
,
char
*
argv
[])
{
int
queue_size
=
1048576
;
int
howmany
=
1000000
;
int
threads
=
10
;
int
iters
=
10
;
try
{
if
(
argc
>
1
)
howmany
=
atoi
(
argv
[
1
]);
if
(
argc
>
2
)
threads
=
atoi
(
argv
[
2
]);
if
(
argc
>
3
)
queue_size
=
atoi
(
argv
[
3
]);
cout
<<
"
\n
*******************************************************************************
\n
"
;
cout
<<
"async logging.. "
<<
threads
<<
" threads sharing same logger, "
<<
format
(
howmany
)
<<
" messages "
<<
endl
;
cout
<<
"*******************************************************************************
\n
"
;
spdlog
::
set_async_mode
(
queue_size
);
size_t
total_rate
=
0
;
for
(
int
i
=
0
;
i
<
iters
;
++
i
)
{
//auto as = spdlog::daily_logger_st("as", "logs/daily_async");
auto
as
=
spdlog
::
create
<
null_sink_st
>
(
"async(null-sink)"
);
total_rate
+=
bench_as
(
howmany
,
as
,
threads
);
spdlog
::
drop
(
"async(null-sink)"
);
}
std
::
cout
<<
endl
;
std
::
cout
<<
"Avg rate: "
<<
format
(
total_rate
/
iters
)
<<
"/sec"
<<
std
::
endl
;
}
catch
(
std
::
exception
&
ex
)
{
std
::
cerr
<<
"Error: "
<<
ex
.
what
()
<<
std
::
endl
;
perror
(
"Last error"
);
return
EXIT_FAILURE
;
}
return
EXIT_SUCCESS
;
}
//return rate/sec
size_t
bench_as
(
int
howmany
,
std
::
shared_ptr
<
spdlog
::
logger
>
log
,
int
thread_count
)
{
cout
<<
log
->
name
()
<<
"...
\t\t
"
<<
flush
;
std
::
atomic
<
int
>
msg_counter
{
0
};
vector
<
thread
>
threads
;
auto
start
=
system_clock
::
now
();
for
(
int
t
=
0
;
t
<
thread_count
;
++
t
)
{
threads
.
push_back
(
std
::
thread
([
&
]()
{
for
(;;)
{
int
counter
=
++
msg_counter
;
if
(
counter
>
howmany
)
break
;
log
->
info
(
"Hello logger: msg number {}"
,
counter
);
}
}));
}
for
(
auto
&
t
:
threads
)
{
t
.
join
();
};
auto
delta
=
system_clock
::
now
()
-
start
;
auto
delta_d
=
duration_cast
<
duration
<
double
>>
(
delta
).
count
();
auto
per_sec
=
size_t
(
howmany
/
delta_d
);
cout
<<
format
(
per_sec
)
<<
"/sec"
<<
endl
;
return
per_sec
;
}
bench/utils.h
0 → 100644
View file @
214c6778
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
#include <sstream>
#include <iomanip>
#include <locale>
namespace
utils
{
template
<
typename
T
>
inline
std
::
string
format
(
const
T
&
value
)
{
static
std
::
locale
loc
(
""
);
std
::
stringstream
ss
;
ss
.
imbue
(
loc
);
ss
<<
value
;
return
ss
.
str
();
}
template
<
>
inline
std
::
string
format
(
const
double
&
value
)
{
static
std
::
locale
loc
(
""
);
std
::
stringstream
ss
;
ss
.
imbue
(
loc
);
ss
<<
std
::
fixed
<<
std
::
setprecision
(
1
)
<<
value
;
return
ss
.
str
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment