Project
Loading...
Searching...
No Matches
GPUReconstructionOCLIncludesHost.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15#ifndef GPURECONSTRUCTIONOCLINCLUDESHOST_H
16#define GPURECONSTRUCTIONOCLINCLUDESHOST_H
17
18#define GPUCA_GPUTYPE_OPENCL
19#define __OPENCL_HOST__
20
21#define CL_TARGET_OPENCL_VERSION 220
22#include <CL/opencl.h>
23#include <CL/cl_ext.h>
24#include <vector>
25#include <string>
26#include <memory>
27#include "GPULogging.h"
28
31#include "GPUCommonHelpers.h"
32
33using namespace o2::gpu;
34
35#include <cstring>
36#include <unistd.h>
37#include <typeinfo>
38#include <cstdlib>
39
40namespace o2::gpu
41{
43 cl_platform_id platform;
44 cl_device_id device;
45 cl_context context;
47 cl_mem mem_gpu;
49 cl_mem mem_host;
50 cl_program program;
51
52 std::vector<cl_kernel> kernels;
53};
54} // namespace o2::gpu
55
56template <typename T, typename... Args>
57inline int64_t GPUReconstructionOCLBackend::OCLsetKernelParameters_helper(cl_kernel& kernel, int32_t i, const T& firstParameter, const Args&... restOfParameters)
58{
59 int64_t retVal = clSetKernelArg(kernel, i, sizeof(T), &firstParameter);
60 if (retVal) {
61 return retVal;
62 }
63 if constexpr (sizeof...(restOfParameters) > 0) {
64 return OCLsetKernelParameters_helper(kernel, i + 1, restOfParameters...);
65 }
66 return 0;
67}
68
69template <typename... Args>
70inline int64_t GPUReconstructionOCLBackend::OCLsetKernelParameters(cl_kernel& kernel, const Args&... args)
71{
72 return OCLsetKernelParameters_helper(kernel, 0, args...);
73}
74
75inline int64_t GPUReconstructionOCLBackend::clExecuteKernelA(cl_command_queue queue, cl_kernel krnl, size_t local_size, size_t global_size, cl_event* pEvent, cl_event* wait, cl_int nWaitEvents)
76{
77 return clEnqueueNDRangeKernel(queue, krnl, 1, nullptr, &global_size, &local_size, wait == nullptr ? 0 : nWaitEvents, wait, pEvent);
78}
79
80#endif // GPURECONSTRUCTIONOCLINCLUDESHOST_H
int32_t i
#define GPUCA_MAX_STREAMS
int32_t retVal
cl_command_queue command_queue[GPUCA_MAX_STREAMS]