summaryrefslogtreecommitdiff
path: root/src/common/wall_clock.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/wall_clock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/wall_clock.cpp b/src/common/wall_clock.cpp
index dc0dcbd68..71e15ab4c 100644
--- a/src/common/wall_clock.cpp
+++ b/src/common/wall_clock.cpp
@@ -56,12 +56,12 @@ std::unique_ptr<WallClock> CreateOptimalClock() {
56#ifdef ARCHITECTURE_x86_64 56#ifdef ARCHITECTURE_x86_64
57 const auto& caps = GetCPUCaps(); 57 const auto& caps = GetCPUCaps();
58 58
59 if (caps.invariant_tsc && caps.tsc_frequency >= WallClock::GPUTickFreq) { 59 if (caps.invariant_tsc && caps.tsc_frequency >= std::nano::den) {
60 return std::make_unique<X64::NativeClock>(caps.tsc_frequency); 60 return std::make_unique<X64::NativeClock>(caps.tsc_frequency);
61 } else { 61 } else {
62 // Fallback to StandardWallClock if the hardware TSC 62 // Fallback to StandardWallClock if the hardware TSC
63 // - Is not invariant 63 // - Is not invariant
64 // - Is not more precise than GPUTickFreq 64 // - Is not more precise than 1 GHz (1ns resolution)
65 return std::make_unique<StandardWallClock>(); 65 return std::make_unique<StandardWallClock>();
66 } 66 }
67#else 67#else