Project
Loading...
Searching...
No Matches
GPUOutputControl.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 GPUOUTPUTCONTROL_H
16#define GPUOUTPUTCONTROL_H
17
18#include "GPUCommonDef.h"
19#include <cstddef>
20#include <functional>
21#include <new>
22
23namespace o2::gpu
24{
25
26// This defines an output region. ptrBase points to a memory buffer, which should have a proper alignment.
27// Since DPL does not respect the alignment of data types, we do not impose anything specic but just use void*, but it should be >= 64 bytes ideally.
28// The size defines the maximum possible buffer size when GPUReconstruction is called, and returns the number of filled bytes when it returns.
29// If the buffer size is exceeded, size is set to 1
30// ptrCurrent must equal ptr if set (or nullptr), and can be incremented by GPUReconstruction step by step if multiple buffers are used.
31// If ptr == nullptr, there is no region defined and GPUReconstruction will write its output to an internal buffer.
32// If allocator is set, it is called as a callback to provide a ptr to the memory.
33
35 GPUOutputControl() = default;
36 void set(void* p, size_t s)
37 {
38 reset();
39 ptrBase = ptrCurrent = p;
40 size = s;
41 }
42 void set(const std::function<void*(size_t)>& a)
43 {
44 reset();
45 allocator = a;
46 }
47 void reset()
48 {
49 new (this) GPUOutputControl;
50 }
51 bool useExternal() { return size || allocator; }
52 bool useInternal() { return !useExternal(); }
54 {
55 if (ptrBase && ptrCurrent == nullptr) {
57 }
58 }
59
60 void* ptrBase = nullptr; // Base ptr to memory pool, occupied size is ptrCurrent - ptr
61 void* ptrCurrent = nullptr; // Pointer to free Output Space
62 size_t size = 0; // Max Size of Output Data if Pointer to output space is given
63 std::function<void*(size_t)> allocator = nullptr; // Allocator callback
64};
65
83
84} // namespace o2::gpu
85
86#endif
GLsizeiptr size
Definition glcorearb.h:659
const GLdouble * v
Definition glcorearb.h:832
GLboolean GLboolean GLboolean GLboolean a
Definition glcorearb.h:1233
void set(const std::function< void *(size_t)> &a)
void set(void *p, size_t s)
std::function< void *(size_t)> allocator
static int32_t getIndex(GPUOutputControl GPUTrackingOutputs::*v)
GPUOutputControl * asArray()
GPUOutputControl tpcTracksO2Labels
GPUOutputControl tpcTracksO2ClusRefs
size_t getIndex(const GPUOutputControl &v)
static constexpr size_t count()
GPUOutputControl sharedClusterMap
GPUOutputControl compressedClusters