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
e3450cac
Commit
e3450cac
authored
Nov 24, 2016
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
📈
removing more variance of the benchmarks
parent
c3a610d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
110 deletions
+77
-110
benchmarks/benchmarks.cpp
benchmarks/benchmarks.cpp
+77
-110
No files found.
benchmarks/benchmarks.cpp
View file @
e3450cac
#define BENCHPRESS_CONFIG_MAIN
#include <fstream>
#include <sstream>
#include <benchpress.hpp>
#include <json.hpp>
#include <pthread.h>
#include <thread>
using
json
=
nlohmann
::
json
;
struct
StartUp
{
StartUp
()
...
...
@@ -23,129 +26,93 @@ struct StartUp
};
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
();
}
})
enum
class
EMode
{
input
,
output_no_indent
,
output_with_indent
};
BENCHMARK
(
"parse canada.json"
,
[](
benchpress
::
context
*
ctx
)
static
void
bench
(
benchpress
::
context
&
ctx
,
const
std
::
string
&
in_path
,
const
EMode
mode
)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
// using string streams for benchmarking to factor-out cold-cache disk
// access.
std
::
stringstream
istr
;
{
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
();
}
})
// read file into string stream
std
::
ifstream
input_file
(
in_path
);
istr
<<
input_file
.
rdbuf
();
input_file
.
close
();
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
();
// read the stream once
json
j
;
j
<<
istr
;
// clear flags and rewind
istr
.
clear
();
istr
.
seekg
(
0
);
}
})
BENCHMARK
(
"parse twitter.json"
,
[](
benchpress
::
context
*
ctx
)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
switch
(
mode
)
{
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
();
}
})
// benchmarking input
case
EMode
:
:
input
:
{
ctx
.
reset_timer
();
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
();
}
})
for
(
size_t
i
=
0
;
i
<
ctx
.
num_iterations
();
++
i
)
{
// clear flags and rewind
istr
.
clear
();
istr
.
seekg
(
0
);
json
j
;
j
<<
istr
;
}
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
();
}
})
break
;
}
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
();
}
})
// benchmarking output
case
EMode
:
:
output_no_indent
:
case
EMode
:
:
output_with_indent
:
{
// create JSON value from input
json
j
;
j
<<
istr
;
std
::
stringstream
ostr
;
BENCHMARK
(
"dump jeopardy.json"
,
[](
benchpress
::
context
*
ctx
)
{
std
::
ifstream
input_file
(
"benchmarks/files/jeopardy/jeopardy.json"
);
nlohmann
::
json
j
;
j
<<
input_file
;
std
::
ofstream
output_file
(
"jeopardy.dump.json"
);
ctx
.
reset_timer
();
for
(
size_t
i
=
0
;
i
<
ctx
.
num_iterations
();
++
i
)
{
if
(
mode
==
EMode
::
output_no_indent
)
{
ostr
<<
j
;
}
else
{
ostr
<<
std
::
setw
(
4
)
<<
j
;
}
ctx
->
reset_timer
();
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
start_timer
();
output_file
<<
j
;
ctx
->
stop_timer
();
}
// reset data
ostr
.
str
(
std
::
string
());
}
std
::
remove
(
"jeopardy.dump.json"
);
})
break
;
}
}
}
BENCHMARK
(
"dump jeopardy.json with indent"
,
[](
benchpress
::
context
*
ctx
)
{
std
::
ifstream
input_file
(
"benchmarks/files/jeopardy/jeopardy.json"
);
nlohmann
::
json
j
;
j
<<
input_file
;
std
::
ofstream
output_file
(
"jeopardy.dump.json"
);
#define BENCHMARK_I(mode, title, in_path) \
BENCHMARK((title), [](benchpress::context* ctx) \
{ \
bench(*ctx, (in_path), (mode)); \
})
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
(
);
}
BENCHMARK_I
(
EMode
::
input
,
"parse jeopardy.json"
,
"benchmarks/files/jeopardy/jeopardy.json"
);
BENCHMARK_I
(
EMode
::
input
,
"parse canada.json"
,
"benchmarks/files/nativejson-benchmark/canada.json"
);
BENCHMARK_I
(
EMode
::
input
,
"parse citm_catalog.json"
,
"benchmarks/files/nativejson-benchmark/citm_catalog.json"
);
BENCHMARK_I
(
EMode
::
input
,
"parse twitter.json"
,
"benchmarks/files/nativejson-benchmark/twitter.json"
);
BENCHMARK_I
(
EMode
::
input
,
"parse numbers/floats.json"
,
"benchmarks/files/numbers/floats.json"
)
;
BENCHMARK_I
(
EMode
::
input
,
"parse numbers/signed_ints.json"
,
"benchmarks/files/numbers/signed_ints.json"
);
BENCHMARK_I
(
EMode
::
input
,
"parse numbers/unsigned_ints.json"
,
"benchmarks/files/numbers/unsigned_ints.json"
);
std
::
remove
(
"jeopardy.dump.json"
);
})
BENCHMARK_I
(
EMode
::
output_no_indent
,
"dump jeopardy.json"
,
"benchmarks/files/jeopardy/jeopardy.json"
);
BENCHMARK_I
(
EMode
::
output_with_indent
,
"dump jeopardy.json with indent"
,
"benchmarks/files/jeopardy/jeopardy.json"
);
BENCHMARK_I
(
EMode
::
output_no_indent
,
"dump numbers/floats.json"
,
"benchmarks/files/numbers/floats.json"
);
BENCHMARK_I
(
EMode
::
output_no_indent
,
"dump numbers/signed_ints.json"
,
"benchmarks/files/numbers/signed_ints.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