9b99d758cd
SWDEV-86035 - Add PAL backend to OpenCL - Switch #pragma once Affected files ... ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palappprofile.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palbinary.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palblit.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palconstbuf.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palcounters.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldebugger.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldebugmanager.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldefs.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldevice.hpp#4 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.cpp#3 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.hpp#3 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palmemory.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprintf.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.hpp#3 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palresource.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsched.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsettings.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palthreadtrace.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paltimestamp.hpp#2 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.hpp#3 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palwavelimiter.hpp#2 edit
27 γραμμές
510 B
C++
27 γραμμές
510 B
C++
//
|
|
// Copyright (c) 2015 Advanced Micro Devices, Inc. All rights reserved.
|
|
//
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
namespace pal {
|
|
|
|
class AppProfile : public amd::AppProfile
|
|
{
|
|
public:
|
|
AppProfile();
|
|
|
|
//! return the value of enableHighPerformanceState_
|
|
bool enableHighPerformanceState() const { return enableHighPerformanceState_; }
|
|
bool reportAsOCL12Device() const { return reportAsOCL12Device_; }
|
|
|
|
private:
|
|
|
|
bool enableHighPerformanceState_;
|
|
bool reportAsOCL12Device_;
|
|
};
|
|
|
|
}
|