aboutsummaryrefslogtreecommitdiff
path: root/deps/inja/third_party/include/hayai/hayai_benchmarker.hpp
blob: 33f005c2ee06e0f58e8ea0b2119aeba130680189 (plain)
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
#ifndef __HAYAI_BENCHMARKER
#define __HAYAI_BENCHMARKER
#include <algorithm>
#include <vector>
#include <limits>
#include <iomanip>
#if __cplusplus > 201100L
#include <random>
#endif
#include <string>
#include <cstring>

#include "hayai_test_factory.hpp"
#include "hayai_test_descriptor.hpp"
#include "hayai_test_result.hpp"
#include "hayai_console_outputter.hpp"


namespace hayai
{
    /// Benchmarking execution controller singleton.
    class Benchmarker
    {
    public:
        /// Get the singleton instance of @ref Benchmarker.

        /// @returns a reference to the singleton instance of the
        /// benchmarker execution controller.
        static Benchmarker& Instance()
        {
            static Benchmarker singleton;
            return singleton;
        }


        /// Register a test with the benchmarker instance.

        /// @param fixtureName Name of the fixture.
        /// @param testName Name of the test.
        /// @param runs Number of runs for the test.
        /// @param iterations Number of iterations per run.
        /// @param testFactory Test factory implementation for the test.
        /// @returns a pointer to a @ref TestDescriptor instance
        /// representing the given test.
        static TestDescriptor* RegisterTest(
            const char* fixtureName,
            const char* testName,
            std::size_t runs,
            std::size_t iterations,
            TestFactory* testFactory,
            TestParametersDescriptor parameters
        )
        {
            // Determine if the test has been disabled.
            static const char* disabledPrefix = "DISABLED_";
            bool isDisabled = ((::strlen(testName) >= 9) &&
                               (!::memcmp(testName, disabledPrefix, 9)));

            if (isDisabled)
                testName += 9;

            // Add the descriptor.
            TestDescriptor* descriptor = new TestDescriptor(fixtureName,
                                                            testName,
                                                            runs,
                                                            iterations,
                                                            testFactory,
                                                            parameters,
                                                            isDisabled);

            Instance()._tests.push_back(descriptor);

            return descriptor;
        }


        /// Add an outputter.

        /// @param outputter Outputter. The caller must ensure that the
        /// outputter remains in existence for the entire benchmark run.
        static void AddOutputter(Outputter& outputter)
        {
            Instance()._outputters.push_back(&outputter);
        }


        /// Apply a pattern filter to the tests.

        /// --gtest_filter-compatible pattern:
        ///
        /// https://code.google.com/p/googletest/wiki/AdvancedGuide
        ///
        /// @param pattern Filter pattern compatible with gtest.
        static void ApplyPatternFilter(const char* pattern)
        {
            Benchmarker& instance = Instance();

            // Split the filter at '-' if it exists.
            const char* const dash = strchr(pattern, '-');

            std::string positive;
            std::string negative;

            if (dash == NULL)
                positive = pattern;
            else
            {
                positive = std::string(pattern, dash);
                negative = std::string(dash + 1);
                if (positive.empty())
                    positive = "*";
            }

            // Iterate across all tests and test them against the patterns.
            std::size_t index = 0;
            while (index < instance._tests.size())
            {
                TestDescriptor* desc = instance._tests[index];

                if ((!FilterMatchesString(positive.c_str(),
                                          desc->CanonicalName)) ||
                    (FilterMatchesString(negative.c_str(),
                                         desc->CanonicalName)))
                {
                    instance._tests.erase(
                        instance._tests.begin() +
                        std::vector<TestDescriptor*>::difference_type(index)
                    );
                    delete desc;
                }
                else
                    ++index;
            }
        }


        /// Run all benchmarking tests.
        static void RunAllTests()
        {
            ConsoleOutputter defaultOutputter;
            std::vector<Outputter*> defaultOutputters;
            defaultOutputters.push_back(&defaultOutputter);

            Benchmarker& instance = Instance();
            std::vector<Outputter*>& outputters =
                (instance._outputters.empty() ?
                 defaultOutputters :
                 instance._outputters);

            // Get the tests for execution.
            std::vector<TestDescriptor*> tests = instance.GetTests();

            const std::size_t totalCount = tests.size();
            std::size_t disabledCount = 0;

            std::vector<TestDescriptor*>::const_iterator testsIt =
                tests.begin();

            while (testsIt != tests.end())
            {
                if ((*testsIt)->IsDisabled)
                    ++disabledCount;
                ++testsIt;
            }

            const std::size_t enabledCount = totalCount - disabledCount;

            // Calibrate the tests.
            const CalibrationModel calibrationModel = GetCalibrationModel();

            // Begin output.
            for (std::size_t outputterIndex = 0;
                 outputterIndex < outputters.size();
                 outputterIndex++)
                outputters[outputterIndex]->Begin(enabledCount, disabledCount);

            // Run through all the tests in ascending order.
            std::size_t index = 0;

            while (index < tests.size())
            {
                // Get the test descriptor.
                TestDescriptor* descriptor = tests[index++];

                // Check if test matches include filters
                if (instance._include.size() > 0)
                {
                    bool included = false;
                    std::string name =
                        descriptor->FixtureName + "." +
                        descriptor->TestName;

                    for (std::size_t i = 0; i < instance._include.size(); i++)
                    {
                        if (name.find(instance._include[i]) !=
                            std::string::npos)
                        {
                            included = true;
                            break;
                        }
                    }

                    if (!included)
                        continue;
                }

                // Check if test is not disabled.
                if (descriptor->IsDisabled)
                {
                    for (std::size_t outputterIndex = 0;
                         outputterIndex < outputters.size();
                         outputterIndex++)
                        outputters[outputterIndex]->SkipDisabledTest(
                            descriptor->FixtureName,
                            descriptor->TestName,
                            descriptor->Parameters,
                            descriptor->Runs,
                            descriptor->Iterations
                        );

                    continue;
                }

                // Describe the beginning of the run.
                for (std::size_t outputterIndex = 0;
                     outputterIndex < outputters.size();
                     outputterIndex++)
                    outputters[outputterIndex]->BeginTest(
                        descriptor->FixtureName,
                        descriptor->TestName,
                        descriptor->Parameters,
                        descriptor->Runs,
                        descriptor->Iterations
                    );

                // Execute each individual run.
                std::vector<uint64_t> runTimes(descriptor->Runs);
                uint64_t overheadCalibration =
                    calibrationModel.GetCalibration(descriptor->Iterations);

                std::size_t run = 0;
                while (run < descriptor->Runs)
                {
                    // Construct a test instance.
                    Test* test = descriptor->Factory->CreateTest();

                    // Run the test.
                    uint64_t time = test->Run(descriptor->Iterations);

                    // Store the test time.
                    runTimes[run] = (time > overheadCalibration ?
                                     time - overheadCalibration :
                                     0);

                    // Dispose of the test instance.
                    delete test;

                    ++run;
                }

                // Calculate the test result.
                TestResult testResult(runTimes, descriptor->Iterations);

                // Describe the end of the run.
                for (std::size_t outputterIndex = 0;
                     outputterIndex < outputters.size();
                     outputterIndex++)
                    outputters[outputterIndex]->EndTest(
                        descriptor->FixtureName,
                        descriptor->TestName,
                        descriptor->Parameters,
                        testResult
                    );

            }

            // End output.
            for (std::size_t outputterIndex = 0;
                 outputterIndex < outputters.size();
                 outputterIndex++)
                outputters[outputterIndex]->End(enabledCount,
                                                disabledCount);
        }


        /// List tests.
        static std::vector<const TestDescriptor*> ListTests()
        {
            std::vector<const TestDescriptor*> tests;
            Benchmarker& instance = Instance();

            std::size_t index = 0;
            while (index < instance._tests.size())
                tests.push_back(instance._tests[index++]);

            return tests;
        }


        /// Shuffle tests.

        /// Randomly shuffles the order of tests.
        static void ShuffleTests()
        {
            Benchmarker& instance = Instance();
#if __cplusplus > 201100L
            std::random_device rd;
            std::mt19937 g(rd());
            std::shuffle(instance._tests.begin(),
                         instance._tests.end(),
                         g);
#else
            std::random_shuffle(instance._tests.begin(),
                                instance._tests.end());
#endif
        }
    private:
        /// Calibration model.

        /// Describes a linear calibration model for test runs.
        struct CalibrationModel
        {
        public:
            CalibrationModel(std::size_t scale,
                             uint64_t slope,
                             uint64_t yIntercept)
                :   Scale(scale),
                    Slope(slope),
                    YIntercept(yIntercept)
            {

            }

            
            /// Scale.

            /// Number of iterations per slope unit.
            const std::size_t Scale;


            /// Slope.
            const uint64_t Slope;


            /// Y-intercept;
            const uint64_t YIntercept;


            /// Get calibration value for a run.
            int64_t GetCalibration(std::size_t iterations) const
            {
                return YIntercept + (iterations * Slope) / Scale;
            }
        };

        
        /// Private constructor.
        Benchmarker()
        {

        }


        /// Private destructor.
        ~Benchmarker()
        {
            // Release all test descriptors.
            std::size_t index = _tests.size();
            while (index--)
                delete _tests[index];
        }


        /// Get the tests to be executed.
        std::vector<TestDescriptor*> GetTests() const
        {
            std::vector<TestDescriptor*> tests;

            std::size_t index = 0;
            while (index < _tests.size())
                tests.push_back(_tests[index++]);

            return tests;
        }


        /// Test if a filter matches a string.

        /// Adapted from gtest. All rights reserved by original authors.
        static bool FilterMatchesString(const char* filter,
                                        const std::string& str)
        {
            const char *patternStart = filter;

            while (true)
            {
                if (PatternMatchesString(patternStart, str.c_str()))
                    return true;

                // Finds the next pattern in the filter.
                patternStart = strchr(patternStart, ':');

                // Returns if no more pattern can be found.
                if (!patternStart)
                    return false;

                // Skips the pattern separater (the ':' character).
                patternStart++;
            }
        }


        /// Test if pattern matches a string.

        /// Adapted from gtest. All rights reserved by original authors.
        static bool PatternMatchesString(const char* pattern, const char *str)
        {
            switch (*pattern)
            {
            case '\0':
            case ':':
                return (*str == '\0');
            case '?':  // Matches any single character.
                return ((*str != '\0') &&
                        (PatternMatchesString(pattern + 1, str + 1)));
            case '*':  // Matches any string (possibly empty) of characters.
                return (((*str != '\0') &&
                         (PatternMatchesString(pattern, str + 1))) ||
                        (PatternMatchesString(pattern + 1, str)));
            default:
                return ((*pattern == *str) &&
                        (PatternMatchesString(pattern + 1, str + 1)));
            }
        }


        /// Get calibration model.

        /// Returns an average linear calibration model.
        static CalibrationModel GetCalibrationModel()
        {
            // We perform a number of runs of varying iterations with an empty
            // test body. The assumption here is, that the time taken for the
            // test run is linear with regards to the number of iterations, ie.
            // some constant overhead with a per-iteration overhead. This
            // hypothesis has been manually validated by linear regression over
            // sample data.
            //
            // In order to avoid losing too much precision, we are going to
            // calibrate in terms of the overhead of some x n iterations,
            // where n must be a sufficiently large number to produce some
            // significant runtime. On a high-end 2012 Retina MacBook Pro with
            // -O3 on clang-602.0.53 (LLVM 6.1.0) n = 1,000,000 produces
            // run times of ~1.9 ms, which should be sufficiently precise.
            //
            // However, as the constant overhead is mostly related to
            // retrieving the system clock, which under the same conditions
            // clocks in at around 17 ms, we run the risk of winding up with
            // a negative y-intercept if we do not fix the y-intercept. This
            // intercept is therefore fixed by a large number of runs of 0
            // iterations.
            ::hayai::Test* test = new Test();

#define HAYAI_CALIBRATION_INTERESECT_RUNS 10000

#define HAYAI_CALIBRATION_RUNS 10
#define HAYAI_CALIBRATION_SCALE 1000000
#define HAYAI_CALIBRATION_PPR 6

            // Determine the intercept.
            uint64_t
                interceptSum = 0,
                interceptMin = std::numeric_limits<uint64_t>::min(),
                interceptMax = 0;

            for (std::size_t run = 0;
                 run < HAYAI_CALIBRATION_INTERESECT_RUNS;
                 ++run)
            {
                uint64_t intercept = test->Run(0);
                interceptSum += intercept;
                if (intercept < interceptMin)
                    interceptMin = intercept;
                if (intercept > interceptMax)
                    interceptMax = intercept;
            }

            uint64_t interceptAvg =
                interceptSum / HAYAI_CALIBRATION_INTERESECT_RUNS;

            // Produce a series of sample points.
            std::vector<uint64_t> x(HAYAI_CALIBRATION_RUNS *
                                    HAYAI_CALIBRATION_PPR);
            std::vector<uint64_t> t(HAYAI_CALIBRATION_RUNS *
                                    HAYAI_CALIBRATION_PPR);

            std::size_t point = 0;

            for (std::size_t run = 0; run < HAYAI_CALIBRATION_RUNS; ++run)
            {
#define HAYAI_CALIBRATION_POINT(_x)                                     \
                x[point] = _x;                                          \
                t[point++] =                                            \
                    test->Run(_x * std::size_t(HAYAI_CALIBRATION_SCALE))

                HAYAI_CALIBRATION_POINT(1);
                HAYAI_CALIBRATION_POINT(2);
                HAYAI_CALIBRATION_POINT(5);
                HAYAI_CALIBRATION_POINT(10);
                HAYAI_CALIBRATION_POINT(15);
                HAYAI_CALIBRATION_POINT(20);

#undef HAYAI_CALIBRATION_POINT
            }

            // As we have a fixed y-intercept, b, the optimal slope for a line
            // fitting the sample points will be
            // $\frac {\sum_{i=1}^{n} x_n \cdot (y_n - b)}
            //  {\sum_{i=1}^{n} {x_n}^2}$.
            uint64_t
                sumProducts = 0,
                sumXSquared = 0;

            std::size_t p = x.size();
            while (p--)
            {
                sumXSquared += x[p] * x[p];
                sumProducts += x[p] * (t[p] - interceptAvg);
            }

            uint64_t slope = sumProducts / sumXSquared;

            delete test;

            return CalibrationModel(HAYAI_CALIBRATION_SCALE,
                                    slope,
                                    interceptAvg);

#undef HAYAI_CALIBRATION_INTERESECT_RUNS

#undef HAYAI_CALIBRATION_RUNS
#undef HAYAI_CALIBRATION_SCALE
#undef HAYAI_CALIBRATION_PPR
        }


        std::vector<Outputter*> _outputters; ///< Registered outputters.
        std::vector<TestDescriptor*> _tests; ///< Registered tests.
        std::vector<std::string> _include; ///< Test filters.
    };
}
#endif