5a0ecc8e48
Change-Id: I0ce8369a7ef569ac82c6e20266d0c98331a43e08
72 righe
3.0 KiB
C++
72 righe
3.0 KiB
C++
/* Copyright (c) 2010 - 2021 Advanced Micro Devices, Inc.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE. */
|
|
|
|
#ifndef _OCL_THREAD_TRACE_H_
|
|
#define _OCL_THREAD_TRACE_H_
|
|
|
|
#include "OCLTestImp.h"
|
|
#include "cl_thread_trace_amd.h"
|
|
|
|
// Thread Trace API
|
|
typedef CL_API_ENTRY cl_threadtrace_amd(
|
|
CL_API_CALL *fnp_clCreateThreadTraceAMD)(cl_device_id, cl_int *);
|
|
typedef CL_API_ENTRY cl_int(CL_API_CALL *fnp_clReleaseThreadTraceAMD)(
|
|
cl_threadtrace_amd);
|
|
typedef CL_API_ENTRY cl_int(CL_API_CALL *fnp_clRetainThreadTraceAMD)(
|
|
cl_threadtrace_amd);
|
|
typedef CL_API_ENTRY cl_int(CL_API_CALL *fnp_clGetThreadTraceInfoAMD)(
|
|
cl_threadtrace_amd, cl_threadtrace_info, size_t, void *, size_t *);
|
|
typedef CL_API_ENTRY cl_int(CL_API_CALL *fnp_clSetThreadTraceParamAMD)(
|
|
cl_threadtrace_amd, cl_thread_trace_param, cl_uint);
|
|
typedef CL_API_ENTRY cl_int(CL_API_CALL *fnp_clEnqueueThreadTraceCommandAMD)(
|
|
cl_command_queue, cl_threadtrace_amd, cl_threadtrace_command_name_amd,
|
|
cl_uint, const cl_event *, cl_event *);
|
|
typedef CL_API_ENTRY cl_int(CL_API_CALL *fnp_clEnqueueBindThreadTraceBufferAMD)(
|
|
cl_command_queue, cl_threadtrace_amd, cl_mem *, cl_uint, cl_uint, cl_uint,
|
|
const cl_event *, cl_event *);
|
|
|
|
class OCLThreadTrace : public OCLTestImp {
|
|
public:
|
|
OCLThreadTrace();
|
|
virtual ~OCLThreadTrace();
|
|
|
|
public:
|
|
virtual void open(unsigned int test, char *units, double &conversion,
|
|
unsigned int deviceID);
|
|
virtual void run(void);
|
|
virtual unsigned int close(void);
|
|
|
|
private:
|
|
bool failed_;
|
|
cl_uint **ioBuf_;
|
|
cl_uint **ttBuf_;
|
|
cl_threadtrace_amd threadTrace_;
|
|
|
|
fnp_clCreateThreadTraceAMD clCreateThreadTraceAMD_;
|
|
fnp_clReleaseThreadTraceAMD clReleaseThreadTraceAMD_;
|
|
fnp_clRetainThreadTraceAMD clRetainThreadTraceAMD_;
|
|
fnp_clGetThreadTraceInfoAMD clGetThreadTraceInfoAMD_;
|
|
fnp_clSetThreadTraceParamAMD clSetThreadTraceParamAMD_;
|
|
fnp_clEnqueueThreadTraceCommandAMD clEnqueueThreadTraceCommandAMD_;
|
|
fnp_clEnqueueBindThreadTraceBufferAMD clEnqueueBindThreadTraceBufferAMD_;
|
|
};
|
|
|
|
#endif // _OCL_THREAD_TRACE_H_
|