-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
67,754 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ json_unit | |
html | ||
|
||
benchmark | ||
|
||
json_benchmarks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#define BENCHPRESS_CONFIG_MAIN | ||
|
||
#include <fstream> | ||
#include <benchpress.hpp> | ||
#include <json.hpp> | ||
|
||
BENCHMARK("parse jeopardy.json", [](benchpress::context* ctx) | ||
{ | ||
for (size_t i = 0; i < ctx->num_iterations(); ++i) | ||
{ | ||
std::ifstream input_file("benchmarks/files/jeopardy/jeopardy.json"); | ||
nlohmann::json j; | ||
j << input_file; | ||
} | ||
}) | ||
|
||
BENCHMARK("parse canada.json", [](benchpress::context* ctx) | ||
{ | ||
for (size_t i = 0; i < ctx->num_iterations(); ++i) | ||
{ | ||
std::ifstream input_file("benchmarks/files/nativejson-benchmark/canada.json"); | ||
nlohmann::json j; | ||
j << input_file; | ||
} | ||
}) | ||
|
||
BENCHMARK("parse citm_catalog.json", [](benchpress::context* ctx) | ||
{ | ||
for (size_t i = 0; i < ctx->num_iterations(); ++i) | ||
{ | ||
std::ifstream input_file("benchmarks/files/nativejson-benchmark/citm_catalog.json"); | ||
nlohmann::json j; | ||
j << input_file; | ||
} | ||
}) | ||
|
||
BENCHMARK("parse twitter.json", [](benchpress::context* ctx) | ||
{ | ||
for (size_t i = 0; i < ctx->num_iterations(); ++i) | ||
{ | ||
std::ifstream input_file("benchmarks/files/nativejson-benchmark/twitter.json"); | ||
nlohmann::json j; | ||
j << input_file; | ||
} | ||
}) | ||
|
||
BENCHMARK("dump jeopardy.json", [](benchpress::context* ctx) | ||
{ | ||
std::ifstream input_file("benchmarks/files/jeopardy/jeopardy.json"); | ||
nlohmann::json j; | ||
j << input_file; | ||
|
||
ctx->reset_timer(); | ||
for (size_t i = 0; i < ctx->num_iterations(); ++i) | ||
{ | ||
j.dump(); | ||
} | ||
}) | ||
|
||
BENCHMARK("dump jeopardy.json with indent", [](benchpress::context* ctx) | ||
{ | ||
std::ifstream input_file("benchmarks/files/jeopardy/jeopardy.json"); | ||
nlohmann::json j; | ||
j << input_file; | ||
|
||
ctx->reset_timer(); | ||
for (size_t i = 0; i < ctx->num_iterations(); ++i) | ||
{ | ||
j.dump(4); | ||
} | ||
}) |
Oops, something went wrong.