source: doc/generic_types/evaluation/bench.hpp @ 2f0fc56

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 2f0fc56 was b276be5, checked in by Aaron Moss <a3moss@…>, 7 years ago

Further updates to benchmarks (new C++ virtual benchmark still slightly broken)

  • Property mode set to 100644
File size: 510 bytes
Line 
1#pragma once
2
3#include <iomanip>
4#include <iostream>
5#include <time.h>
6
7 #define N 100000000
8 
9
10long ms_between(clock_t start, clock_t end) {
11        return (end - start) / (CLOCKS_PER_SEC / 1000);
12}
13
14#define TIMED(name, code) { \
15        volatile clock_t _start, _end; \
16        _start = clock(); \
17        code \
18        _end = clock(); \
19        std::cout << name << ":\t" << std::setw(7) << ms_between(_start, _end) << std::setw(0) << " ms" << std::endl; \
20}
21
22#define REPEAT_TIMED(name, code) TIMED( name, for (int _i = 0; _i < N; ++_i) { code } )
Note: See TracBrowser for help on using the repository browser.