Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
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
json
Commits
5f4becb0
Commit
5f4becb0
authored
Nov 23, 2016
by
Niels
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into feature/issue365
parents
6cc2d58d
ed611119
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
1 deletion
+45
-1
Makefile
Makefile
+1
-1
benchmarks/benchmarks.cpp
benchmarks/benchmarks.cpp
+44
-0
No files found.
Makefile
View file @
5f4becb0
...
...
@@ -95,7 +95,7 @@ pretty:
# benchmarks
json_benchmarks
:
benchmarks/benchmarks.cpp benchmarks/benchpress.hpp benchmarks/cxxopts.hpp src/json.hpp
cd
benchmarks/files/numbers
;
python generate.py
$(CXX)
-std
=
c++11
$(CXXFLAGS)
-DNDEBUG
-O3
-flto
-I
src
-I
benchmarks
$<
$(LDFLAGS)
-o
$@
$(CXX)
-std
=
c++11
-pthread
$(CXXFLAGS)
-DNDEBUG
-O3
-flto
-I
src
-I
benchmarks
$<
$(LDFLAGS)
-o
$@
./json_benchmarks
...
...
benchmarks/benchmarks.cpp
View file @
5f4becb0
...
...
@@ -3,14 +3,36 @@
#include <fstream>
#include <benchpress.hpp>
#include <json.hpp>
#include <pthread.h>
#include <thread>
struct
StartUp
{
StartUp
()
{
#ifndef __llvm__
// pin thread to a single CPU
cpu_set_t
cpuset
;
pthread_t
thread
;
thread
=
pthread_self
();
CPU_ZERO
(
&
cpuset
);
CPU_SET
(
std
::
thread
::
hardware_concurrency
()
-
1
,
&
cpuset
);
pthread_setaffinity_np
(
thread
,
sizeof
(
cpu_set_t
),
&
cpuset
);
#endif
}
};
StartUp
startup
;
BENCHMARK
(
"parse jeopardy.json"
,
[](
benchpress
::
context
*
ctx
)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/jeopardy/jeopardy.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
...
...
@@ -18,9 +40,12 @@ BENCHMARK("parse canada.json", [](benchpress::context* ctx)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/nativejson-benchmark/canada.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
...
...
@@ -28,9 +53,12 @@ BENCHMARK("parse citm_catalog.json", [](benchpress::context* ctx)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/nativejson-benchmark/citm_catalog.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
...
...
@@ -38,9 +66,12 @@ BENCHMARK("parse twitter.json", [](benchpress::context* ctx)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/nativejson-benchmark/twitter.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
...
...
@@ -48,9 +79,12 @@ BENCHMARK("parse numbers/floats.json", [](benchpress::context* ctx)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/numbers/floats.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
...
...
@@ -58,9 +92,12 @@ BENCHMARK("parse numbers/signed_ints.json", [](benchpress::context* ctx)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/numbers/signed_ints.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
...
...
@@ -68,9 +105,12 @@ BENCHMARK("parse numbers/unsigned_ints.json", [](benchpress::context* ctx)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/numbers/unsigned_ints.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
...
...
@@ -84,7 +124,9 @@ BENCHMARK("dump jeopardy.json", [](benchpress::context* ctx)
ctx
->
reset_timer
();
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
start_timer
();
output_file
<<
j
;
ctx
->
stop_timer
();
}
std
::
remove
(
"jeopardy.dump.json"
);
...
...
@@ -100,7 +142,9 @@ BENCHMARK("dump jeopardy.json with indent", [](benchpress::context* ctx)
ctx
->
reset_timer
();
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
start_timer
();
output_file
<<
std
::
setw
(
4
)
<<
j
;
ctx
->
stop_timer
();
}
std
::
remove
(
"jeopardy.dump.json"
);
...
...
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