37 lines
471 B
C++
37 lines
471 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
class Timer {
|
|
public:
|
|
Timer();
|
|
Timer(const Timer &) = delete;
|
|
|
|
~Timer();
|
|
|
|
void start();
|
|
|
|
void end();
|
|
|
|
long long int get();
|
|
|
|
long long getStart();
|
|
long long getEnd();
|
|
|
|
Timer &operator=(const Timer &t);
|
|
|
|
static void setFreq();
|
|
|
|
private:
|
|
class TimerImpl;
|
|
TimerImpl *timerImpl;
|
|
};
|
|
}; // namespace NEO
|