#include <chrono>
Go to the source code of this file.
Namespaces | |
namespace | Kokkos |
namespace | Kokkos::utils |
namespace | Kokkos::utils::timer |
Typedefs | |
Helper types to represent time durations. | |
using | Kokkos::utils::timer::microseconds = std::chrono::duration<double, std::micro> |
using | Kokkos::utils::timer::milliseconds = std::chrono::duration<double, std::milli> |
Similar to std::chrono::milliseconds , but using double instead of an integer type to represent the tick count. | |
using | Kokkos::utils::timer::seconds = std::chrono::duration<double, std::ratio<1, 1>> |
Similar to std::chrono::seconds , but using double instead of an integer type to represent the tick count. | |