Project
Loading...
Searching...
No Matches
GPUReconstructionOCL.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 GPURECONSTRUCTIONOCL_H
16#define GPURECONSTRUCTIONOCL_H
17
19
20#ifdef _WIN32
22#else
24#endif
25
26namespace o2::gpu
27{
28struct GPUReconstructionOCLInternals;
29
31{
32 public:
34
35 protected:
37
38 int32_t InitDevice_Runtime() override;
39 int32_t ExitDevice_Runtime() override;
41
42 virtual int32_t GPUChkErrInternal(const int64_t error, const char* file, int32_t line) const override;
43
44 void SynchronizeGPU() override;
45 int32_t DoStuckProtection(int32_t stream, deviceEvent event) override;
46 int32_t GPUDebug(const char* state = "UNKNOWN", int32_t stream = -1, bool force = false) override;
47 void SynchronizeStream(int32_t stream) override;
48 void SynchronizeEvents(deviceEvent* evList, int32_t nEvents = 1) override;
49 void StreamWaitForEvents(int32_t stream, deviceEvent* evList, int32_t nEvents = 1) override;
50 bool IsEventDone(deviceEvent* evList, int32_t nEvents = 1) override;
51
52 size_t WriteToConstantMemory(size_t offset, const void* src, size_t size, int32_t stream = -1, deviceEvent* ev = nullptr) override;
53 size_t GPUMemCpy(void* dst, const void* src, size_t size, int32_t stream, int32_t toGPU, deviceEvent* ev = nullptr, deviceEvent* evList = nullptr, int32_t nEvents = 1) override;
54 void ReleaseEvent(deviceEvent ev) override;
55 void RecordMarker(deviceEvent* ev, int32_t stream) override;
56
57 template <class T, int32_t I = 0>
58 int32_t AddKernel();
59 template <class T, int32_t I = 0, typename... Args>
60 void runKernelBackendInternal(const krnlSetupTime& _xyz, const Args&... args);
61
64
65 template <class T, int32_t I = 0, typename... Args>
67 template <class S, class T, int32_t I>
69
70 int32_t GetOCLPrograms();
71
72 private:
73 static const char* convertErrorToString(int32_t errorCode);
74 template <typename T, typename... Args>
75 static inline int64_t OCLsetKernelParameters_helper(cl_kernel& kernel, int32_t i, const T& firstParameter, const Args&... restOfParameters);
76 template <typename... Args>
77 static int64_t OCLsetKernelParameters(cl_kernel& kernel, const Args&... args);
78 static int64_t clExecuteKernelA(cl_command_queue queue, cl_kernel krnl, size_t local_size, size_t global_size, cl_event* pEvent = nullptr, cl_event* wait = nullptr, cl_int nWaitEvents = 1);
79 int32_t AddKernels();
80};
81
83} // namespace o2::gpu
84
85#endif
benchmark::State & state
int32_t i
o2::gpu::GPUReconstruction * GPUReconstruction_Create_OCL(const o2::gpu::GPUSettingsDeviceBackend &cfg)
void runKernelBackend(const krnlSetupArgs< T, I, Args... > &args)
void SynchronizeStream(int32_t stream) override
int32_t GPUDebug(const char *state="UNKNOWN", int32_t stream=-1, bool force=false) override
void RecordMarker(deviceEvent *ev, int32_t stream) override
size_t WriteToConstantMemory(size_t offset, const void *src, size_t size, int32_t stream=-1, deviceEvent *ev=nullptr) override
size_t GPUMemCpy(void *dst, const void *src, size_t size, int32_t stream, int32_t toGPU, deviceEvent *ev=nullptr, deviceEvent *evList=nullptr, int32_t nEvents=1) override
void runKernelBackendInternal(const krnlSetupTime &_xyz, const Args &... args)
virtual int32_t GPUChkErrInternal(const int64_t error, const char *file, int32_t line) const override
GPUReconstructionOCLInternals * mInternals
void SynchronizeEvents(deviceEvent *evList, int32_t nEvents=1) override
int32_t DoStuckProtection(int32_t stream, deviceEvent event) override
void ReleaseEvent(deviceEvent ev) override
void StreamWaitForEvents(int32_t stream, deviceEvent *evList, int32_t nEvents=1) override
bool IsEventDone(deviceEvent *evList, int32_t nEvents=1) override
struct _cl_event * event
Definition glcorearb.h:2982
GLenum src
Definition glcorearb.h:1767
GLsizeiptr size
Definition glcorearb.h:659
GLenum GLenum dst
Definition glcorearb.h:1767
GLintptr offset
Definition glcorearb.h:660
GLuint GLuint stream
Definition glcorearb.h:1806
const int nEvents
Definition test_Fifo.cxx:27