Files
rocm-systems/rocclr/runtime/platform/counter.hpp
T

33 строки
539 B
C++
Исходник Обычный вид История

2014-07-04 16:17:05 -04:00
//
// Copyright (c) 2008 Advanced Micro Devices, Inc. All rights reserved.
//
#ifndef COUNTERS_HPP_
#define COUNTERS_HPP_
#include "top.hpp"
namespace amd {
/*! \addtogroup Runtime
* @{
*
* \addtogroup Devicecounter
* @{
*/
/*! \class Counter
*
* \brief The container class for the performance counters
*/
class Counter : public RuntimeObject {
public:
//! RTTI internal implementation
virtual ObjectType objectType() const { return ObjectTypeCounter; }
2014-07-04 16:17:05 -04:00
};
/*@}*/
/*@}*/ } // namespace amd
#endif // COUNTERS_HPP_