From 0214d7e7d075ae2b8534847d4d5fd9c485626694 Mon Sep 17 00:00:00 2001 From: Rob Hughes Date: Wed, 21 Nov 2018 09:55:52 +0000 Subject: Fix compile errors on Windows Change-Id: I40acb42360bfcda09485efb2a54144d8e35bdafb --- src/armnn/WallClockTimer.hpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/armnn/WallClockTimer.hpp b/src/armnn/WallClockTimer.hpp index 88cbb4d50d..197ad7d1b7 100644 --- a/src/armnn/WallClockTimer.hpp +++ b/src/armnn/WallClockTimer.hpp @@ -11,7 +11,7 @@ namespace armnn { -// Clock class that uses the same timestamp function as the Mali DDK. +// Clock class that uses the same timestamp function as the Mali DDK where possible. class monotonic_clock_raw { public: using duration = std::chrono::nanoseconds; @@ -19,9 +19,15 @@ public: static std::chrono::time_point now() noexcept { +#if defined(__unix__) timespec ts; clock_gettime(CLOCK_MONOTONIC_RAW, &ts); - return time_point(std::chrono::nanoseconds(ts.tv_sec*1000000000 + ts.tv_nsec)); + return time_point(std::chrono::nanoseconds(ts.tv_sec * 1000000000 + ts.tv_nsec)); +#else + // On other platforms we have to make do with the standard C++ API, which may not exactly match + // the Mali DDK. + return std::chrono::time_point(); +#endif } }; -- cgit v1.2.1