Files
compute-runtime/shared/source/utilities/timer_util.h
Daniel Chabrowski 7463e1970b Cleanup headers
Make TUs and headers self-contained, remove unused headers

Signed-off-by: Daniel Chabrowski <daniel.chabrowski@intel.com>
2022-05-18 11:42:06 +02:00

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