Files
rocm-systems/src/timer.h
T
Sylvain Jeaugey d313d20a26 Update NCCL tests
2022-09-23 01:13:29 -07:00

16 строки
270 B
C++

#ifndef _408319ecdd5b47b28bf8f511c4fdf816
#define _408319ecdd5b47b28bf8f511c4fdf816
#include <cstdint>
// Can't include <chrono> because of bug with gcc 10.3.0
class timer {
std::uint64_t t0;
public:
timer();
double elapsed() const;
double reset();
};
#endif