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();
|
|
|
|
|
|
|
|
|
|
//! return the value of enableHighPerformanceState_
|
2014-08-06 13:38:48 -04:00
|
|
|
bool enableHighPerformanceState() const { return enableHighPerformanceState_; }
|
|
|
|
|
bool reportAsOCL12Device() const { return reportAsOCL12Device_; }
|
2014-07-04 16:17:05 -04:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
bool enableHighPerformanceState_;
|
|
|
|
|
bool reportAsOCL12Device_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|