| 9 | namespace mgb::imperative::cupti { |
| 10 | |
| 11 | struct clock { |
| 12 | typedef std::chrono::nanoseconds duration; |
| 13 | typedef duration::rep rep; |
| 14 | typedef duration::period period; |
| 15 | typedef std::chrono::time_point<clock> time_point; |
| 16 | static const bool is_steady = false; |
| 17 | |
| 18 | static time_point now() /* noexcept */; |
| 19 | }; |
| 20 | |
| 21 | using time_point = clock::time_point; |
| 22 |