aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/ann/time-util.h
blob: 2f5c2bdd583b39ac5930f4c43482a940bb7ba6d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

using TimePoint = std::chrono::steady_clock::time_point;
using Duration = std::chrono::steady_clock::duration;

double to_ms(Duration elapsed) {
    std::chrono::duration<double, std::milli> ms(elapsed);
    return ms.count();
}