You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be really cool if hyperfine could scan stdout for magic words that tell it when to start/stop timing. For example if I have a benchmark that loads data from disk and then processes it, I don't really care about the time it takes to load from disk. If I could do this:
auto data = load_from_disk();
std::cout << "HYPERFINE_START\n";
process(data);
std::cout << "HYPERFINE_STOP\n";
That'd be nice!
The text was updated successfully, but these errors were encountered:
It would be really cool if hyperfine could scan stdout for magic words that tell it when to start/stop timing. For example if I have a benchmark that loads data from disk and then processes it, I don't really care about the time it takes to load from disk. If I could do this:
That'd be nice!
The text was updated successfully, but these errors were encountered: