Project
Loading...
Searching...
No Matches
GPUReconstructionDeviceBase.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 GPURECONSTRUCTIONDEVICEBASE_H
16#define GPURECONSTRUCTIONDEVICEBASE_H
17
19#include <pthread.h>
20#include "GPUChain.h"
21#include <vector>
22
23namespace o2::gpu
24{
25#if !(defined(__CLING__) || defined(__ROOTCLING__) || defined(G__ROOT))
26extern template class GPUReconstructionKernels<GPUReconstructionCPUBackend>;
27#endif
28
30{
31 public:
33
34 const GPUParam* DeviceParam() const { return &mDeviceConstantMem->param; }
41
42 protected:
43 GPUReconstructionDeviceBase(const GPUSettingsDeviceBackend& cfg, size_t sizeCheck);
44
45 int32_t InitDevice() override;
46 virtual int32_t InitDevice_Runtime() = 0;
47 int32_t ExitDevice() override;
48 virtual int32_t ExitDevice_Runtime() = 0;
49 virtual int32_t GPUChkErrInternal(const int64_t error, const char* file, int32_t line) const override = 0;
50 int32_t registerMemoryForGPU_internal(const void* ptr, size_t size) override;
51 int32_t unregisterMemoryForGPU_internal(const void* ptr) override;
52 void unregisterRemainingRegisteredMemory();
53
54 virtual const GPUTPCTracker* CPUTracker(int32_t iSector) { return &processors()->tpcTrackers[iSector]; }
55
56 int32_t GPUDebug(const char* state = "UNKNOWN", int32_t stream = -1, bool force = false) override = 0;
57 size_t TransferMemoryInternal(GPUMemoryResource* res, int32_t stream, deviceEvent* ev, deviceEvent* evList, int32_t nEvents, bool toGPU, const void* src, void* dst) override;
58 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 = 0;
59 size_t GPUMemCpyAlways(bool onGpu, 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;
60 size_t WriteToConstantMemory(size_t offset, const void* src, size_t size, int32_t stream = -1, deviceEvent* ev = nullptr) override = 0;
61
62 int32_t GetGlobalLock(void*& pLock);
63 void ReleaseGlobalLock(void* sem);
64
65 int32_t mDeviceId = -1; // Device ID used by backend
66
67 struct DebugEvents {
68 deviceEvent DebugStart, DebugStop; // Debug timer events
69 };
70 DebugEvents* mDebugEvents = nullptr;
71
72 std::vector<void*> mDeviceConstantMemList;
73 static std::vector<void* (*)()>& getDeviceConstantMemRegistratorsVector()
74 {
75 static std::vector<void* (*)()> deviceConstantMemRegistrators{};
76 return deviceConstantMemRegistrators;
77 }
78 void runConstantRegistrators();
79};
80
81inline size_t GPUReconstructionDeviceBase::GPUMemCpyAlways(bool onGpu, void* dst, const void* src, size_t size, int32_t stream, int32_t toGPU, deviceEvent* ev, deviceEvent* evList, int32_t nEvents)
82{
83 if (onGpu) {
84 return GPUMemCpy(dst, src, size, stream, toGPU, ev, evList, nEvents);
85 } else {
86 return GPUReconstructionCPU::GPUMemCpyAlways(false, dst, src, size, stream, toGPU, ev, evList, nEvents);
87 }
88}
89} // namespace o2::gpu
90
91#endif
benchmark::State & state
uint32_t res
Definition RawData.h:0
TBranch * ptr
virtual size_t GPUMemCpyAlways(bool onGpu, void *dst, const void *src, size_t size, int32_t stream, int32_t toGPU, deviceEvent *ev=nullptr, deviceEvent *evList=nullptr, int32_t nEvents=1)
virtual int32_t GPUChkErrInternal(const int64_t error, const char *file, int32_t line) const override=0
virtual int32_t InitDevice_Runtime()=0
size_t GPUMemCpyAlways(bool onGpu, 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
virtual const GPUTPCTracker * CPUTracker(int32_t iSector)
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=0
size_t WriteToConstantMemory(size_t offset, const void *src, size_t size, int32_t stream=-1, deviceEvent *ev=nullptr) override=0
virtual int32_t ExitDevice_Runtime()=0
int32_t GPUDebug(const char *state="UNKNOWN", int32_t stream=-1, bool force=false) override=0
static std::vector< void *(*)()> & getDeviceConstantMemRegistratorsVector()
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