Skip to content
/ timeit Public

A simple way to time small bits of C/C++ code

Notifications You must be signed in to change notification settings

klimkin/timeit

Repository files navigation

timeit::timeit

Inspired by timeit Python module, this class provides a simple way to time small bits of C/C++ code.

Example:

#include <map>
#include "timeit.h"

std::map<int, int> std_map;

void std_map_emplace() {
    std_map.clear();
    for (int i = 0; i < 50; ++i) {
        std_map.emplace(i, i);
    }
}

int main() {
    timeit::timeit_out<>{}(std_map_emplace);
    return 0;
}

Output:

1000000 loops, best of 3: 1.5497 usec per loop

About

A simple way to time small bits of C/C++ code

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published