2020-08-09 06:19:56 +08:00
|
|
|
#include "simdjson.h"
|
2020-08-09 10:24:09 +08:00
|
|
|
#include "simdjson.cpp"
|
2020-09-09 06:25:50 +08:00
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <random>
|
|
|
|
#include <vector>
|
2020-09-02 22:43:28 +08:00
|
|
|
SIMDJSON_PUSH_DISABLE_ALL_WARNINGS
|
|
|
|
#include <benchmark/benchmark.h>
|
|
|
|
SIMDJSON_POP_DISABLE_WARNINGS
|
2020-08-11 05:03:50 +08:00
|
|
|
|
2020-09-02 22:43:28 +08:00
|
|
|
#include "partial_tweets/sax.h"
|
|
|
|
#include "largerandom/sax.h"
|
2020-09-04 04:32:13 +08:00
|
|
|
|
2020-08-09 06:19:56 +08:00
|
|
|
BENCHMARK_MAIN();
|