Project
Loading...
Searching...
No Matches
Utils.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.
15
16#ifndef ITSTRACKINGGPU_UTILS_H_
17#define ITSTRACKINGGPU_UTILS_H_
18
19#include "GPUCommonDef.h"
20
21namespace o2
22{
23namespace its
24{
25template <typename T1, typename T2>
26struct gpuPair {
29};
30
31namespace gpu
32{
33
34template <typename T>
35void discardResult(const T&)
36{
37}
38
39// Poor man implementation of a span-like struct. It is very limited.
40template <typename T>
41struct gpuSpan {
42 using value_type = T;
43 using ptr = T*;
44 using ref = T&;
45
46 GPUd() gpuSpan() : _data(nullptr), _size(0) {}
47 GPUd() gpuSpan(ptr data, unsigned int dim) : _data(data), _size(dim) {}
48 GPUd() ref operator[](unsigned int idx) const { return _data[idx]; }
49 GPUd() unsigned int size() const { return _size; }
50 GPUd() bool empty() const { return _size == 0; }
51 GPUd() ref front() const { return _data[0]; }
52 GPUd() ref back() const { return _data[_size - 1]; }
53 GPUd() ptr begin() const { return _data; }
54 GPUd() ptr end() const { return _data + _size; }
55
56 protected:
58 unsigned int _size;
59};
60
61template <typename T>
62struct gpuSpan<const T> {
63 using value_type = T;
64 using ptr = const T*;
65 using ref = const T&;
66
67 GPUd() gpuSpan() : _data(nullptr), _size(0) {}
68 GPUd() gpuSpan(ptr data, unsigned int dim) : _data(data), _size(dim) {}
70 GPUd() ref operator[](unsigned int idx) const { return _data[idx]; }
71 GPUd() unsigned int size() const { return _size; }
72 GPUd() bool empty() const { return _size == 0; }
73 GPUd() ref front() const { return _data[0]; }
74 GPUd() ref back() const { return _data[_size - 1]; }
75 GPUd() ptr begin() const { return _data; }
76 GPUd() ptr end() const { return _data + _size; }
77
78 protected:
80 unsigned int _size;
81};
82
83enum class Task {
84 Tracker = 0,
85 Vertexer = 1
86};
87
88template <class T>
89GPUhd() T* getPtrFromRuler(int index, T* src, const int* ruler, const int stride = 1)
90{
91 return src + ruler[index] * stride;
92}
93
94template <class T>
95GPUhd() const T* getPtrFromRuler(int index, const T* src, const int* ruler, const int stride = 1)
96{
97 return src + ruler[index] * stride;
98}
99} // namespace gpu
100} // namespace its
101} // namespace o2
102
103#endif
GLenum src
Definition glcorearb.h:1767
GLsizeiptr size
Definition glcorearb.h:659
GLuint GLuint end
Definition glcorearb.h:469
GLuint index
Definition glcorearb.h:781
GLboolean * data
Definition glcorearb.h:298
GLint GLenum GLboolean GLsizei stride
Definition glcorearb.h:867
T const int * ruler
Definition Utils.h:89
void discardResult(const T &)
Definition Utils.h:35
GPUhd() T *getPtrFromRuler(int index
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
void empty(int)
GPUd() gpuSpan(const gpuSpan< T > &other)
Definition Utils.h:69
GPUd() ref front() const
Definition Utils.h:73
GPUd() bool empty() const
Definition Utils.h:72
GPUd() ref operator[](unsigned int idx) const
Definition Utils.h:70
GPUd() ptr end() const
Definition Utils.h:76
GPUd() unsigned int size() const
Definition Utils.h:71
GPUd() ptr begin() const
Definition Utils.h:75
GPUd() ref back() const
Definition Utils.h:74
GPUd() bool empty() const
Definition Utils.h:50
unsigned int dim
Definition Utils.h:47
GPUd() ptr begin() const
Definition Utils.h:53
GPUd() ref operator[](unsigned int idx) const
Definition Utils.h:48
GPUd() gpuSpan()
Definition Utils.h:46
GPUd() ptr end() const
Definition Utils.h:54
GPUd() unsigned int size() const
Definition Utils.h:49
unsigned int _size
Definition Utils.h:58
GPUd() ref back() const
Definition Utils.h:52
GPUd() ref front() const
Definition Utils.h:51
VectorOfTObjectPtrs other