Files
rocm-systems/rocclr/runtime/device/gpu/gpuappprofile.hpp
T

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

2014-07-04 16:17:05 -04:00
//
// Copyright (c) 2014 Advanced Micro Devices, Inc. All rights reserved.
//
#ifndef GPUAPPPROFILE_HPP_
#define GPUAPPPROFILE_HPP_
#include <string>
#include <map>
namespace gpu {
class AppProfile : public amd::AppProfile {
public:
AppProfile();
2014-07-04 16:17:05 -04:00
//! return the value of enableHighPerformanceState_
bool enableHighPerformanceState() const { return enableHighPerformanceState_; }
bool reportAsOCL12Device() const { return reportAsOCL12Device_; }
2014-07-04 16:17:05 -04:00
private:
bool enableHighPerformanceState_;
bool reportAsOCL12Device_;
2014-07-04 16:17:05 -04:00
};
}
#endif