1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
|
// picobench v2.00
// https://github.com/iboB/picobench
//
// A micro microbenchmarking library in a single header file
//
// MIT License
//
// Copyright(c) 2017-2018 Borislav Stanimirov
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files(the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions :
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
//
// VERSION HISTORY
//
// 2.x1 (2021-01-19) * Added user data per iter, changed text output.
// 2.01 (2019-03-03) * Fixed android build when binding to a signle core
// 2.00 (2018-10-30) * Breaking change! runner::run_benchmarks doesn't return
// a report anymore. The report is generated by
// runner::generate_report instead
// * Breaking change! report_output_format doesn't accept
// output streams as arguments. Use set_output_streams.
// * Potentially breaking change (gcc and clang)! Always set
// thread affinity to first core. Macro to turn this off.
// * Added runner::run which performs a full execution
// * Added benchmark results and results comparison
// * Added error enum
// * Macro option to allow a std::function as a benchmark
// * Macros for default iterations and samples
// * Allowing local registration of benchmarks in a runner
// * Added local_runner which doesn't consume registry
// * More force-inline functions in states
// * Fixed some potential compilation warnings
// * Removed tests from header
// * Anonymous namespace for impl-only classes and funcs
// * Added setters and getters for every config option
// 1.05 (2018-07-17) * Counting iterations of state
// * Optionally set thread affinity when running benchmarks
// so as not to miss cpu cycles with the high res clock
// 1.04 (2018-02-06) * User data for benchmarks, which can be seen from states
// * `add_custom_duration` to states so the user can modify time
// * Text table format fixes
// * Custom cmd opts in runner
// * --version CLI command
// 1.03 (2018-01-05) Added helper methods for easier browsing of reports
// 1.02 (2018-01-04) Added parsing of command line
// 1.01 (2018-01-03) * Only taking the fastest sample into account
// * Set default number of samples to 2
// * Added CSV output
// 1.00 (2018-01-01) Initial release
// 0.01 (2017-12-28) Initial prototype release
//
//
// EXAMPLE
//
// void my_function(); // the function you want to benchmark
//
// // write your benchmarking code in a function like this
// static void benchmark_my_function(picobench::state& state)
// {
// // use the state in a range-based for loop to call your code
// for (auto _ : state)
// my_function();
// }
// // create a picobench with your benchmarking code
// PICOBENCH(benchmark_my_function);
//
//
// BASIC DOCUMENTATION
//
// A very brief usage guide follows. For more detailed documentation see the
// README here: https://github.com/iboB/picobench/blob/master/README.md
//
// Simply include this file wherever you need.
// You need to define PICOBENCH_IMPLEMENT_WITH_MAIN (or PICOBENCH_IMPLEMENT if
// you want to write your own main function) in one compilation unit to have
// the implementation compiled there.
//
// The benchmark code must be a `void (picobench::state&)` function which
// you have written. Benchmarks are registered using the `PICOBENCH` macro
// where the only argument is the function's name.
//
// You can have multiple benchmarks in multiple files. All will be run when the
// executable starts.
//
// Typically a benchmark has a loop. To run the loop use the state argument in
// a range-based for loop in your function. The time spent looping is measured
// for the benchmark. You can have initialization/deinitialization code outside
// of the loop and it won't be measured.
//
#pragma once
#include <cstdint>
#include <chrono>
#include <vector>
#if defined(PICOBENCH_STD_FUNCTION_BENCHMARKS)
# include <functional>
#endif
#define PICOBENCH_VERSION 2.x1
#define PICOBENCH_VERSION_STR "2.x1"
#if defined(PICOBENCH_DEBUG)
# include <cassert>
# define I_PICOBENCH_ASSERT assert
#else
# define I_PICOBENCH_ASSERT(...)
#endif
#if defined(__GNUC__)
# define PICOBENCH_INLINE __attribute__((always_inline))
#elif defined(_MSC_VER)
# define PICOBENCH_INLINE __forceinline
#else
# define PICOBENCH_INLINE inline
#endif
namespace picobench
{
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(PICOBENCH_TEST)
struct high_res_clock
{
typedef long long rep;
typedef std::nano period;
typedef std::chrono::duration<rep, period> duration;
typedef std::chrono::time_point<high_res_clock> time_point;
static const bool is_steady = true;
static time_point now();
};
#else
using high_res_clock = std::chrono::high_resolution_clock;
#endif
using result_t = intptr_t;
using udata_t = uintptr_t;
class state
{
public:
explicit state(size_t num_iterations, udata_t user_data = 0, udata_t arg = 0)
: _user_data(user_data)
, _arg(arg)
, _iterations(num_iterations)
{
I_PICOBENCH_ASSERT(_iterations > 0);
}
size_t iterations() const { return _iterations; }
uint64_t duration_ns() const { return _duration_ns; }
void add_custom_duration(uint64_t duration_ns) { _duration_ns += duration_ns; }
udata_t user_data() const { return _user_data; }
udata_t arg() const { return _arg; }
// optionally set result of benchmark
// this can be used as a value sync to prevent optimizations
// or a way to check whether benchmarks produce the same results
void set_result(uintptr_t data) { _result = data; }
result_t result() const { return _result; }
PICOBENCH_INLINE
void start_timer()
{
_start = high_res_clock::now();
}
PICOBENCH_INLINE
void stop_timer()
{
auto duration = high_res_clock::now() - _start;
_duration_ns = std::chrono::duration_cast<std::chrono::nanoseconds>(duration).count();
}
struct iterator
{
PICOBENCH_INLINE
iterator(state* parent)
: _counter(0)
, _lim(parent->iterations())
, _state(parent)
{
I_PICOBENCH_ASSERT(_counter < _lim);
}
PICOBENCH_INLINE
iterator()
: _counter(0)
, _lim(0)
, _state(nullptr)
{}
PICOBENCH_INLINE
iterator& operator++()
{
I_PICOBENCH_ASSERT(_counter < _lim);
++_counter;
return *this;
}
PICOBENCH_INLINE
bool operator!=(const iterator&) const
{
if (_counter < _lim) return true;
_state->stop_timer();
return false;
}
PICOBENCH_INLINE
size_t operator*() const
{
return _counter;
}
private:
size_t _counter;
const size_t _lim;
state* _state;
};
PICOBENCH_INLINE
iterator begin()
{
start_timer();
return iterator(this);
}
PICOBENCH_INLINE
iterator end()
{
return iterator();
}
private:
high_res_clock::time_point _start;
uint64_t _duration_ns = 0;
udata_t _user_data;
udata_t _arg;
size_t _iterations;
result_t _result = 0;
};
// this can be used for manual measurement
class scope
{
public:
PICOBENCH_INLINE
scope(state& s)
: _state(s)
{
_state.start_timer();
}
PICOBENCH_INLINE
~scope()
{
_state.stop_timer();
}
private:
state& _state;
};
#if defined(PICOBENCH_STD_FUNCTION_BENCHMARKS)
using benchmark_proc = std::function<void(state&)>;
#else
using benchmark_proc = void(*)(state&);
#endif
class benchmark
{
public:
const char* name() const { return _name; }
benchmark& iterations(std::vector<size_t> data) { _state_iterations = std::move(data); return *this; }
benchmark& samples(int n) { _samples = n; return *this; }
benchmark& label(const char* label) { _name = label; return *this; }
benchmark& baseline(bool b = true) { _baseline = b; return *this; }
benchmark& user_data(udata_t data) { _user_data = data; return *this; }
benchmark& args(std::vector<udata_t> data) { _args = std::move(data); return *this; }
protected:
friend class runner;
benchmark(const char* name, benchmark_proc proc);
const char* _name;
const benchmark_proc _proc;
bool _baseline = false;
udata_t _user_data = 0;
std::vector<size_t> _state_iterations;
std::vector<udata_t> _args;
int _samples = 0;
};
// used for globally functions
// note that you can instantiate a runner and register local benchmarks for it alone
class global_registry
{
public:
static int set_bench_suite(const char* name);
static benchmark& new_benchmark(const char* name, benchmark_proc proc);
};
}
#define I_PICOBENCH_PP_CAT(a, b) I_PICOBENCH_PP_INTERNAL_CAT(a, b)
#define I_PICOBENCH_PP_INTERNAL_CAT(a, b) a##b
#define PICOBENCH_SUITE(name) \
static int I_PICOBENCH_PP_CAT(picobench_suite, __LINE__) = \
picobench::global_registry::set_bench_suite(name)
#define PICOBENCH(func) \
static auto& I_PICOBENCH_PP_CAT(picobench, __LINE__) = \
picobench::global_registry::new_benchmark(#func, func)
#if defined(PICOBENCH_IMPLEMENT_WITH_MAIN)
# define PICOBENCH_IMPLEMENT
# define PICOBENCH_IMPLEMENT_MAIN
#endif
#if defined(PICOBENCH_IMPLEMENT)
#include <random>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <map>
#include <memory>
#include <cstring>
#include <cstdlib>
#if defined(_WIN32)
# define WIN32_LEAN_AND_MEAN
# include <Windows.h>
#else
# if !defined(PICOBENCH_DONT_BIND_TO_ONE_CORE)
# if defined(__APPLE__)
# include <mach/mach.h>
# else
# include <sched.h>
# endif
# endif
#endif
namespace picobench
{
// namespace
// {
enum error_t
{
no_error,
error_bad_cmd_line_argument, // ill-formed command-line argument
error_unknown_cmd_line_argument, // command argument looks like a picobench one, but isn't
error_sample_compare, // benchmark produced different results across samples
error_benchmark_compare, // two benchmarks of the same suite and dimension produced different results
};
class report
{
public:
struct benchmark_problem_space
{
size_t dimension; // number of iterations for the problem space
udata_t user_data;
udata_t arg;
int samples; // number of samples taken
uint64_t total_time_ns; // fastest sample!!!
result_t result; // result of fastest sample
};
struct benchmark
{
const char* name;
bool is_baseline;
std::vector<benchmark_problem_space> data;
};
struct suite
{
const char* name;
std::vector<benchmark> benchmarks; // benchmark view
const benchmark* find_benchmark(const char* name) const
{
for (auto& b : benchmarks)
{
if (strcmp(b.name, name) == 0)
return &b;
}
return nullptr;
}
const benchmark* find_baseline() const
{
for (auto& b : benchmarks)
{
if (b.is_baseline)
return &b;
}
return nullptr;
}
};
std::vector<suite> suites;
error_t error = no_error;
const suite* find_suite(const char* name) const
{
for (auto& s : suites)
{
if (strcmp(s.name, name) == 0)
return &s;
}
return nullptr;
}
void to_text(std::ostream& out) const
{
using namespace std;
int width = 100;
for (auto& suite : suites)
{
if (suite.name)
{
out << suite.name << ":\n";
}
line(out, width);
out <<
" Name (* = baseline) |Iterations | Arg |Baseline | ns/op | Total ms | Ops/second\n";
line(out, width);
auto problem_space_view = get_problem_space_view(suite);
for (auto& ps : problem_space_view)
{
const problem_space_benchmark* baseline = nullptr;
for (auto& bm : ps.second)
{
if (bm.is_baseline)
{
baseline = &bm;
break;
}
}
for (auto& bm : ps.second)
{
out << (bm.is_baseline ? "* " : " ") << left << setw(26) << bm.name << right;
out << " |"
<< setw(10) << ps.first.first << " |"
<< setw(10) << bm.arg << " |";
if (bm.is_baseline) //(baseline == &bm)
{
baseline = &bm;
out << " - |";
}
else if (baseline)
{
out << setw(8) << fixed << setprecision(3)
<< double(bm.total_time_ns) / double(baseline->total_time_ns) << " |";
}
else
{
// no baseline to compare to
out << " ? |";
}
auto ns_op = (bm.total_time_ns / ps.first.first);
if (ns_op > 99999999)
{
int e = 0;
while (ns_op > 999999)
{
++e;
ns_op /= 10;
}
out << setw(8) << ns_op << 'e' << e;
}
else
{
out << setw(10) << ns_op;
}
out << " |";
out << setw(10) << fixed << setprecision(2) << double(bm.total_time_ns) / 1000000.0 << " |";
auto ops_per_sec = ps.first.first * (1000000000.0 / double(bm.total_time_ns));
out << setw(12) << fixed << setprecision(1) << ops_per_sec << "\n";
}
}
line(out, width);
}
}
void to_text_concise(std::ostream& out)
{
using namespace std;
int width = 65;
for (auto& suite : suites)
{
if (suite.name)
{
out << suite.name << ":\n";
}
line(out, width);
out <<
" Name (* = baseline) | Baseline | ns/op | Total ms\n"; // | Ops/second\n";
line(out, width);
const benchmark* baseline = nullptr;
for (auto& bm : suite.benchmarks)
{
if (bm.is_baseline)
{
baseline = &bm;
break;
}
}
I_PICOBENCH_ASSERT(baseline);
uint64_t baseline_total_time = 0;
size_t baseline_total_iterations = 0;
for (auto& d : baseline->data)
{
baseline_total_time += d.total_time_ns;
baseline_total_iterations += d.dimension;
}
for (auto& bm : suite.benchmarks)
{
out << (bm.is_baseline ? "* " : " ") << left << setw(26) << bm.name << right
<< " |";
uint64_t total_time = 0;
size_t total_iterations = 0;
for (auto& d : bm.data)
{
total_time += d.total_time_ns;
total_iterations += d.dimension;
}
uint64_t ns_per_op = total_time / total_iterations;
if (bm.is_baseline)
{
out << " -";
baseline = &bm;
baseline_total_time = total_time;
baseline_total_iterations = total_iterations;
}
else
{
out << setw(9) << fixed << setprecision(3)
<< double(total_time) / baseline_total_time;
}
out << " |" << setw(10) << ns_per_op << " |";
out << setw(12) << fixed << setprecision(2) << double(total_time) / 1000000.0 << "\n";
//auto ops_per_sec = total_iterations * (1000000000.0 / total_time);
//out << setw(12) << fixed << setprecision(1) << ops_per_sec << "\n";
}
line(out, width);
}
}
void to_csv(std::ostream& out) const
{
using namespace std;
const char* sep = ",";
for (auto& suite : suites)
{
out << "Suite, Baseline, Benchmark, Iterations, Arg, Ratio, Total ms, ns/op, Ops/second\n";
auto problem_space_view = get_problem_space_view(suite);
for (auto& ps : problem_space_view)
{
const problem_space_benchmark* baseline = nullptr;
for (auto& bm : ps.second)
{
if (bm.is_baseline)
{
baseline = &bm;
break;
}
}
for (auto& bm : ps.second)
{
out << '"' << (suite.name ? suite.name : "") << '"';
out << sep << (bm.is_baseline ? "true" : "false");
out << sep << '"' << bm.name << '"';
out << sep << ps.first.first
<< sep << bm.arg << sep;
if (baseline == &bm)
{
out << 1.0;
}
else if (baseline)
{
out << fixed << setprecision(3) << double(bm.total_time_ns) / baseline->total_time_ns;
}
else
{
out << -1.0; // no baseline to compare to
}
out << sep << fixed << setprecision(3) << bm.total_time_ns / 1000000.0;
auto ns_op = (bm.total_time_ns / ps.first.first);
out << sep << ns_op;
auto ops_per_sec = ps.first.first * (1000000000.0 / bm.total_time_ns);
out << sep << fixed << setprecision(1) << ops_per_sec << "\n";
}
}
}
}
struct problem_space_benchmark
{
const char* name;
bool is_baseline;
udata_t user_data;
udata_t arg;
uint64_t total_time_ns; // fastest sample!!!
result_t result; // result of fastest sample
};
using problem_space_view_map = std::map<std::pair<size_t, udata_t>,
std::vector<problem_space_benchmark>>;
static problem_space_view_map get_problem_space_view(const suite& s)
{
problem_space_view_map res;
for (auto& bm : s.benchmarks)
{
for (auto& d : bm.data)
{
auto& pvbs = res[{d.dimension, d.arg}];
pvbs.push_back({ bm.name, bm.is_baseline, d.user_data, d.arg, d.total_time_ns, d.result });
}
}
return res;
}
private:
static void line(std::ostream& out, int width = 79)
{
for (int i = 0; i < width; ++i) out.put('=');
out.put('\n');
}
};
class benchmark_impl : public benchmark
{
public:
benchmark_impl(const char* name, benchmark_proc proc)
: benchmark(name, proc)
{}
private:
friend class runner;
// state
std::vector<state> _states; // length is _samples * _state_iterations.size()
std::vector<state>::iterator _istate;
};
class picostring
{
public:
picostring() = default;
explicit picostring(const char* text)
{
str = text;
len = int(strlen(text));
}
const char* str;
int len = 0;
// checks whether other begins with this string
bool cmp(const char* other) const
{
return strncmp(str, other, size_t(len)) == 0;
}
};
class null_streambuf : public std::streambuf
{
public:
virtual int overflow(int c) override { return c; }
};
struct null_stream : public std::ostream
{
null_stream() : std::ostream(&_buf) {}
private:
null_streambuf _buf;
} cnull;
enum class report_output_format
{
text,
concise_text,
csv,
all,
};
#if !defined(PICOBENCH_DEFAULT_ITERATIONS)
# define PICOBENCH_DEFAULT_ITERATIONS { 8, 64, 512, 4096, 8192 }
#endif
#if !defined(PICOBENCH_DEFAULT_SAMPLES)
# define PICOBENCH_DEFAULT_SAMPLES 2
#endif
using benchmarks_vector = std::vector<std::unique_ptr<benchmark_impl>>;
struct rsuite
{
const char* name;
benchmarks_vector benchmarks;
};
class registry
{
public:
benchmark& add_benchmark(const char* name, benchmark_proc proc)
{
auto b = new benchmark_impl(name, proc);
benchmarks_for_current_suite().emplace_back(b);
return *b;
}
void set_suite(const char* name)
{
_current_suite_name = name;
}
const char*& current_suite_name()
{
return _current_suite_name;
}
benchmarks_vector& benchmarks_for_current_suite()
{
for (auto& s : _suites)
{
if (s.name == _current_suite_name)
return s.benchmarks;
if (s.name && _current_suite_name && strcmp(s.name, _current_suite_name) == 0)
return s.benchmarks;
}
_suites.push_back({ _current_suite_name, {} });
return _suites.back().benchmarks;
}
protected:
friend class runner;
const char* _current_suite_name = nullptr;
std::vector<rsuite> _suites;
};
registry& g_registry()
{
static registry r;
return r;
}
class runner : public registry
{
public:
runner(bool local = false)
: _default_state_iterations(PICOBENCH_DEFAULT_ITERATIONS)
, _default_samples(PICOBENCH_DEFAULT_SAMPLES)
{
if (!local)
{
_suites = std::move(g_registry()._suites);
}
}
int run(int benchmark_random_seed = -1)
{
if (should_run())
{
run_benchmarks(benchmark_random_seed);
auto report = generate_report();
std::ostream* out = _stdout;
std::ofstream fout;
report_output_format fmt[] = {report_output_format::csv,
report_output_format::text,
report_output_format::concise_text};
const char *ext[] = {".csv", ".txt", ".lst"}, *fn = preferred_output_filename();
bool all = preferred_output_format() == report_output_format::all;
for (int i = 0; i < 3; ++i)
{
if (all || preferred_output_format() == fmt[i])
{
if (fn)
{
std::string name(fn);
if (all || name.find(".") == std::string::npos)
{
name += ext[i];
}
fout.close();
fout.open(name.c_str());
if (!fout.is_open())
{
std::cerr << "Error: Could not open output file `" << fn << "`\n";
return 1;
}
out = &fout;
}
switch (fmt[i])
{
case report_output_format::text:
report.to_text(*out);
break;
case report_output_format::concise_text:
report.to_text_concise(*out);
break;
case report_output_format::csv:
report.to_csv(*out);
break;
default: break;
}
}
}
}
return error();
}
void run_benchmarks(int random_seed = -1)
{
I_PICOBENCH_ASSERT(_error == no_error && _should_run);
if (random_seed == -1)
{
random_seed = int(std::random_device()());
}
std::minstd_rand rnd(random_seed);
// vector of all benchmarks
std::vector<benchmark_impl*> benchmarks;
for (auto& suite : _suites)
{
// also identify a baseline in this loop
// if there is no explicit one, set the first one as a baseline
bool found_baseline = false;
for (auto irb = suite.benchmarks.begin(); irb != suite.benchmarks.end(); ++irb)
{
auto& rb = *irb;
rb->_states.clear(); // clear states so we can safely call run_benchmarks multiple times
benchmarks.push_back(rb.get());
if (rb->_baseline)
{
found_baseline = true;
}
#if !defined(PICOBENCH_STD_FUNCTION_BENCHMARKS)
// check for same func
for (auto ib = irb+1; ib != suite.benchmarks.end(); ++ib)
{
auto& b = *ib;
if (rb->_proc == b->_proc)
{
*_stdwarn << "Warning: " << rb->name() << " and " << b->name()
<< " are benchmarks of the same function.\n";
}
}
#endif
}
if (!found_baseline && !suite.benchmarks.empty())
{
suite.benchmarks.front()->_baseline = true;
}
}
// initialize benchmarks
for (auto b : benchmarks)
{
if (b->_state_iterations.empty())
b->_state_iterations = _default_state_iterations;
udata_t arg = b->_args.empty() ? udata_t() : b->_args.back();
b->_args.resize(b->_state_iterations.size(), arg);
if (b->_samples == 0)
b->_samples = _default_samples;
b->_states.reserve(b->_state_iterations.size() * b->_samples);
// fill states while random shuffling them
for (size_t iter = 0; iter < b->_state_iterations.size(); ++iter)
{
for (int i = 0; i < b->_samples; ++i)
{
auto index = rnd() % (b->_states.size() + 1);
auto pos = b->_states.begin() + long(index);
b->_states.emplace(pos, b->_state_iterations[iter], b->_user_data, b->_args[iter]);
}
}
b->_istate = b->_states.begin();
}
#if !defined(PICOBENCH_DONT_BIND_TO_ONE_CORE)
// set thread affinity to first cpu
// so the high resolution clock doesn't miss cycles
{
#if defined(_WIN32)
SetThreadAffinityMask(GetCurrentThread(), 1);
#elif defined(__APPLE__)
thread_affinity_policy_data_t policy = {0};
thread_policy_set(
pthread_mach_thread_np(pthread_self()),
THREAD_AFFINITY_POLICY,
(thread_policy_t)&policy, 1);
#else
cpu_set_t cpuset;
CPU_ZERO(&cpuset);
CPU_SET(0, &cpuset);
sched_setaffinity(0, sizeof(cpu_set_t), &cpuset);
#endif
}
#endif
// we run a random benchmark from it incrementing _istate for each
// when _istate reaches _states.end(), we erase the benchmark
// when the vector becomes empty, we're done
while (!benchmarks.empty())
{
auto i = benchmarks.begin() + long(rnd() % benchmarks.size());
auto& b = *i;
std::cerr << '.';
b->_proc(*b->_istate);
++b->_istate;
if (b->_istate == b->_states.end())
{
benchmarks.erase(i);
}
}
std::cerr << '\n';
}
// function to compare results
template <typename CompareResult = std::equal_to<result_t>>
report generate_report(CompareResult cmp = std::equal_to<result_t>()) const
{
report rpt;
rpt.suites.resize(_suites.size());
auto rpt_suite = rpt.suites.begin();
for (auto& suite : _suites)
{
rpt_suite->name = suite.name;
// build benchmark view
rpt_suite->benchmarks.resize(suite.benchmarks.size());
auto rpt_benchmark = rpt_suite->benchmarks.begin();
for (auto& b : suite.benchmarks)
{
rpt_benchmark->name = b->_name;
rpt_benchmark->is_baseline = b->_baseline;
rpt_benchmark->data.reserve(b->_state_iterations.size());
for (size_t i = 0; i < b->_state_iterations.size(); ++i)
{
rpt_benchmark->data.push_back({ b->_state_iterations[i], b->_user_data, b->_args[i], 0, 0ll });
}
for (auto& state : b->_states)
{
for (auto& d : rpt_benchmark->data)
{
if (state.iterations() == d.dimension && state.arg() == d.arg)
{
if (d.total_time_ns == 0 || d.total_time_ns > state.duration_ns())
{
d.total_time_ns = state.duration_ns();
d.result = state.result();
}
if (_compare_results_across_samples)
{
if (d.result != state.result() && !cmp(d.result, state.result()))
{
*_stderr << "Error: Two samples of " << b->name() << " @" << d.dimension << " produced different results: "
<< d.result << " and " << state.result() << '\n';
_error = error_sample_compare;
}
}
++d.samples;
}
}
}
#if defined(PICOBENCH_DEBUG)
for (auto& d : rpt_benchmark->data)
{
I_PICOBENCH_ASSERT(d.samples == b->_samples);
}
#endif
++rpt_benchmark;
}
++rpt_suite;
}
if (_compare_results_across_benchmarks)
{
for(auto& suite : rpt.suites)
{
auto psview = report::get_problem_space_view(suite);
for (auto& space : psview)
{
I_PICOBENCH_ASSERT(!space.second.empty());
if (space.second.size() == 1)
{
auto& b = space.second.front();
*_stdwarn << "Warning: Benchmark " << b.name << " @" << space.first.first
<< " has a single instance and cannot be compared to others.\n";
continue;
}
auto result0 = space.second.front().result;
for (auto& b : space.second)
{
if (result0 != b.result && !cmp(result0, b.result))
{
auto& f = space.second.front();
*_stderr << "Error: Benchmarks " << f.name << " and " << b.name
<< " @" << space.first.first << " produce different results: "
<< result0 << " and " << b.result << '\n';
_error = error_benchmark_compare;
}
}
}
}
}
return rpt;
}
void set_default_state_iterations(const std::vector<size_t>& data)
{
_default_state_iterations = data;
}
const std::vector<size_t>& default_state_iterations() const
{
return _default_state_iterations;
}
void set_default_samples(int n)
{
_default_samples = n;
}
int default_samples() const
{
return _default_samples;
}
void add_cmd_opt(const char* cmd, const char* arg_desc, const char* cmd_desc, bool(*handler)(uintptr_t, const char*), udata_t user_data = 0)
{
cmd_line_option opt;
opt.cmd = picostring(cmd);
opt.arg_desc = picostring(arg_desc);
opt.desc = cmd_desc;
opt.handler = nullptr;
opt.user_data = user_data;
opt.user_handler = handler;
_opts.push_back(opt);
}
// returns false if there were errors parsing the command line
// all args starting with prefix are parsed
// the others are ignored
bool parse_cmd_line(int argc, const char* const argv[], const char* cmd_prefix = "-")
{
_cmd_prefix = picostring(cmd_prefix);
if (!_has_opts)
{
_opts.emplace_back("-iters=", "<n1,n2,n3,...>",
"Sets default iterations for benchmarks",
&runner::cmd_iters);
_opts.emplace_back("-samples=", "<n>",
"Sets default number of samples for benchmarks",
&runner::cmd_samples);
_opts.emplace_back("-out-fmt=", "<txt|con|csv>",
"Outputs text, concise, csv or all",
&runner::cmd_out_fmt);
_opts.emplace_back("-all", "",
"Outputs all formats: text, con, csv",
&runner::cmd_out_all);
_opts.emplace_back("-output=", "<filename>",
"Sets output filename or `stdout`",
&runner::cmd_output);
_opts.emplace_back("-no-compare-results", "",
"Doesn't compare benchmark results",
&runner::cmd_compare_results);
_opts.emplace_back("-no-run", "",
"Doesn't run benchmarks",
&runner::cmd_no_run);
_opts.emplace_back("-version", "",
"Show version info",
&runner::cmd_version);
_opts.emplace_back("-help", "",
"Prints help",
&runner::cmd_help);
_has_opts = true;
}
for (int i = 1; i < argc; ++i)
{
if (!_cmd_prefix.cmp(argv[i]))
continue;
auto arg = argv[i] + _cmd_prefix.len;
bool found = false;
for (auto& opt : _opts)
{
if (opt.cmd.cmp(arg))
{
found = true;
bool success = false;
if (opt.handler)
{
success = (this->*opt.handler)(arg + opt.cmd.len);
}
else
{
I_PICOBENCH_ASSERT(opt.user_handler);
success = opt.user_handler(opt.user_data, arg + opt.cmd.len);
}
if (!success)
{
*_stderr << "Error: Bad command-line argument: " << argv[i] << "\n";
_error = error_bad_cmd_line_argument;
return false;
}
break;
}
}
if (!found)
{
*_stderr << "Error: Unknown command-line argument: " << argv[i] << "\n";
_error = error_unknown_cmd_line_argument;
return false;
}
}
return true;
}
void set_should_run(bool set) { _should_run = set; }
bool should_run() const { return _error == no_error && _should_run; }
void set_error(error_t e) { _error = e; }
error_t error() const { return _error; }
void set_output_streams(std::ostream& out, std::ostream& err)
{
_stdout = &out;
_stderr = &err;
_stdwarn = &out;
}
void set_preferred_output_format(report_output_format fmt) { _output_format = fmt; }
report_output_format preferred_output_format() const { return _output_format; }
// can be nullptr (run will interpret it as stdout)
void set_preferred_output_filename(const char* path) { _output_file = path; }
const char* preferred_output_filename() const { return _output_file; }
void set_compare_results_across_samples(bool b) { _compare_results_across_samples = b; }
bool compare_results_across_samples() const { return _compare_results_across_samples; }
void set_compare_results_across_benchmarks(bool b) { _compare_results_across_benchmarks = b; }
bool compare_results_across_benchmarks() const { return _compare_results_across_benchmarks; }
private:
// runner's suites and benchmarks come from its parent: registry
// state and configuration
mutable error_t _error = no_error;
bool _should_run = true;
bool _compare_results_across_samples = true;
bool _compare_results_across_benchmarks = true;
report_output_format _output_format = report_output_format::concise_text;
const char* _output_file = nullptr; // nullptr means stdout
std::ostream* _stdout = &std::cout;
std::ostream* _stderr = &std::cerr;
std::ostream* _stdwarn = &std::cout;
// default data
// default iterations per state per benchmark
std::vector<size_t> _default_state_iterations;
// default samples per benchmark
int _default_samples;
// command line parsing
picostring _cmd_prefix;
typedef bool (runner::*cmd_handler)(const char*); // internal handler
typedef bool(*ext_handler)(udata_t user_data, const char* cmd_line); // external (user) handler
struct cmd_line_option
{
cmd_line_option() = default;
cmd_line_option(const char* c, const char* a, const char* d, cmd_handler h)
: cmd(c)
, arg_desc(a)
, desc(d)
, handler(h)
, user_data(0)
, user_handler(nullptr)
{}
picostring cmd;
picostring arg_desc;
const char* desc;
cmd_handler handler; // may be nullptr for external handlers
udata_t user_data; // passed as an argument to user handlers
ext_handler user_handler;
};
bool _has_opts = false; // have opts been added to list
std::vector<cmd_line_option> _opts;
bool cmd_iters(const char* line)
{
std::vector<size_t> iters;
auto p = line;
while (true)
{
auto i = strtoull(p, nullptr, 10);
if (i <= 0) return false;
iters.push_back(i);
p = strchr(p + 1, ',');
if (!p) break;
++p;
}
if (iters.empty()) return false;
_default_state_iterations = iters;
return true;
}
bool cmd_samples(const char* line)
{
int samples = int(strtol(line, nullptr, 10));
if (samples <= 0) return false;
_default_samples = samples;
return true;
}
bool cmd_no_run(const char* line)
{
if (*line) return false;
_should_run = false;
return true;
}
bool cmd_version(const char* line)
{
if (*line) return false;
*_stdout << "picobench " PICOBENCH_VERSION_STR << "\n";
_should_run = false;
return true;
}
bool cmd_help(const char* line)
{
if (*line) return false;
cmd_version(line);
auto& cout = *_stdout;
for (auto& opt : _opts)
{
cout << ' ' << _cmd_prefix.str << opt.cmd.str << opt.arg_desc.str;
int w = 27 - (_cmd_prefix.len + opt.cmd.len + opt.arg_desc.len);
for (int i = 0; i < w; ++i)
{
cout.put(' ');
}
cout << opt.desc << "\n";
}
_should_run = false;
return true;
}
bool cmd_out_all(const char* line)
{
_output_format = report_output_format::all;
return true;
}
bool cmd_out_fmt(const char* line)
{
if (strcmp(line, "txt") == 0)
{
_output_format = report_output_format::text;
}
else if (strcmp(line, "con") == 0)
{
_output_format = report_output_format::concise_text;
}
else if (strcmp(line, "csv") == 0)
{
_output_format = report_output_format::csv;
}
else
{
return false;
}
return true;
}
bool cmd_output(const char* line)
{
if (strcmp(line, "stdout") != 0)
{
_output_file = line;
}
else
{
_output_file = nullptr;
}
return true;
}
bool cmd_compare_results(const char* line)
{
if (*line) return false;
_compare_results_across_samples = false;
_compare_results_across_benchmarks = false;
return true;
}
};
class local_runner : public runner
{
public:
local_runner() : runner(true)
{}
};
// } // anonymous namespace
benchmark::benchmark(const char* name, benchmark_proc proc)
: _name(name)
, _proc(proc)
{}
benchmark& global_registry::new_benchmark(const char* name, benchmark_proc proc)
{
return g_registry().add_benchmark(name, proc);
}
int global_registry::set_bench_suite(const char* name)
{
g_registry().current_suite_name() = name;
return 0;
}
#if (defined(_MSC_VER) || defined(__MINGW32__)) && !defined(PICOBENCH_TEST)
static const long long high_res_clock_freq = []() -> long long
{
LARGE_INTEGER frequency;
QueryPerformanceFrequency(&frequency);
return frequency.QuadPart;
}();
high_res_clock::time_point high_res_clock::now()
{
LARGE_INTEGER t;
QueryPerformanceCounter(&t);
return time_point(duration((t.QuadPart * rep(period::den)) / high_res_clock_freq));
}
#endif
}
#endif
#if defined(PICOBENCH_IMPLEMENT_MAIN)
int main(int argc, char* argv[])
{
picobench::runner r;
r.parse_cmd_line(argc, argv);
return r.run();
}
#endif
#if defined(PICOBENCH_TEST)
// fake time keeping functions for the tests
namespace picobench
{
void this_thread_sleep_for_ns(uint64_t ns);
template <class Rep, class Period>
void this_thread_sleep_for(const std::chrono::duration<Rep, Period>& duration)
{
this_thread_sleep_for_ns(std::chrono::duration_cast<std::chrono::nanoseconds>(duration).count());
}
#if defined(PICOBENCH_IMPLEMENT)
static struct fake_time
{
uint64_t now;
} the_time;
void this_thread_sleep_for_ns(uint64_t ns)
{
the_time.now += ns;
}
high_res_clock::time_point high_res_clock::now()
{
auto ret = time_point(duration(the_time.now));
return ret;
}
#endif
}
#endif
|