Project
Loading...
Searching...
No Matches
GPUTPCCompression.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 GPUTPCCOMPRESSION_H
16#define GPUTPCCOMPRESSION_H
17
18#include "GPUDef.h"
19#include "GPUProcessor.h"
20#include "GPUCommonMath.h"
21#include "GPUParam.h"
23
24namespace o2::gpu
25{
26class GPUTPCGMMerger;
27
29{
32 friend class GPUChainTracking;
33
34 public:
35#ifndef GPUCA_GPUCODE
39
40 void* SetPointersOutputGPU(void* mem);
41 void* SetPointersOutputHost(void* mem);
42 void* SetPointersOutputPtrs(void* mem);
43 void* SetPointersOutput(void* mem);
44 void* SetPointersScratch(void* mem);
45 void* SetPointersMemory(void* mem);
46#endif
47
48 static constexpr uint32_t P_MAX_QMAX = 1 << 10;
49 static constexpr uint32_t P_MAX_QTOT = 5 * 5 * P_MAX_QMAX;
50 static constexpr uint32_t P_MAX_TIME = 1 << 24;
51 static constexpr uint32_t P_MAX_PAD = 1 << 16;
52 static constexpr uint32_t P_MAX_SIGMA = 1 << 8;
53 static constexpr uint32_t P_MAX_FLAGS = 1 << 8;
54 static constexpr uint32_t P_MAX_QPT = 1 << 8;
55
56 GPUd() static void truncateSignificantBitsCharge(uint16_t& charge, const GPUParam& param) { truncateSignificantBits(charge, param.rec.tpc.sigBitsCharge, P_MAX_QTOT); }
57 GPUd() static void truncateSignificantBitsChargeMax(uint16_t& charge, const GPUParam& param) { truncateSignificantBits(charge, param.rec.tpc.sigBitsCharge, P_MAX_QMAX); }
58 GPUd() static void truncateSignificantBitsWidth(uint8_t& width, const GPUParam& param) { truncateSignificantBits(width, param.rec.tpc.sigBitsWidth, P_MAX_SIGMA); }
59
60 protected:
61 struct memory {
62 uint32_t nStoredTracks = 0;
65 };
66
67 constexpr static uint32_t NSECTORS = GPUCA_NSECTORS;
68
71 o2::tpc::CompressedClusters* mOutputA = nullptr; // Always points to host buffer
73
74 memory* mMemory = nullptr;
75 uint32_t* mAttachedClusterFirstIndex = nullptr;
76 uint8_t* mClusterStatus = nullptr;
77
78 uint32_t mMaxTracks = 0;
79 uint32_t mMaxClusters = 0;
80 uint32_t mMaxTrackClusters = 0;
81 uint32_t mMaxClustersInCache = 0;
83
84 template <class T>
85 void SetPointersCompressedClusters(void*& mem, T& c, uint32_t nClA, uint32_t nTr, uint32_t nClU, bool reducedClA);
86 template <class T>
87 GPUd() static void truncateSignificantBits(T& val, uint32_t nBits, uint32_t max);
88
90 int16_t mMemoryResOutputGPU = -1;
91};
92
93template <class T>
94GPUdi() void GPUTPCCompression::truncateSignificantBits(T& v, uint32_t nBits, uint32_t max)
95{
96 if (nBits == 0) {
97 return;
98 }
99
100 uint32_t val = v;
101 uint32_t ldz = sizeof(uint32_t) * 8 - CAMath::Clz(val);
102 if (val && ldz > nBits) {
103 if (val & (1 << (ldz - nBits - 1))) {
104 val += (1 << (ldz - nBits - 1));
105 ldz = sizeof(uint32_t) * 8 - CAMath::Clz(val);
106 }
107 val &= ((1 << ldz) - 1) ^ ((1 << (ldz - nBits)) - 1);
108 if (val >= max) {
109 val = max - 1;
110 }
111 // GPUInfo("CHANGING X %x --> %x", (uint32_t) v, val);
112 v = val;
113 }
114}
115} // namespace o2::gpu
116
117#endif
Container to store compressed TPC cluster data.
int16_t charge
Definition RawEventData.h:5
#define GPUCA_NSECTORS
uint32_t c
Definition RawData.h:2
GPUd() static void truncateSignificantBitsChargeMax(uint16_t &charge
static constexpr uint32_t P_MAX_QTOT
GPUd() static void truncateSignificantBits(T &val
GPUd() static void truncateSignificantBitsWidth(uint8_t &width
static constexpr uint32_t P_MAX_QMAX
void * SetPointersOutputHost(void *mem)
static constexpr uint32_t P_MAX_TIME
void SetPointersCompressedClusters(void *&mem, T &c, uint32_t nClA, uint32_t nTr, uint32_t nClU, bool reducedClA)
static constexpr uint32_t P_MAX_QPT
static constexpr uint32_t P_MAX_SIGMA
o2::tpc::CompressedClusters * mOutput
void * SetPointersMemory(void *mem)
void * SetPointersOutputGPU(void *mem)
static constexpr uint32_t NSECTORS
o2::tpc::CompressedClusters * mOutputA
o2::tpc::CompressedClustersPtrs mPtrs
void * SetPointersOutput(void *mem)
o2::tpc::CompressedClustersFlat * mOutputFlat
GPUd() static void truncateSignificantBitsCharge(uint16_t &charge
void * SetPointersOutputPtrs(void *mem)
void SetMaxData(const GPUTrackingInOutPointers &io)
static constexpr uint32_t P_MAX_PAD
static constexpr uint32_t P_MAX_FLAGS
void * SetPointersScratch(void *mem)
const GLdouble * v
Definition glcorearb.h:832
GLint GLsizei width
Definition glcorearb.h:270
GLuint GLfloat * val
Definition glcorearb.h:1582
GLenum GLfloat param
Definition glcorearb.h:271
GPUdi() o2
Definition TrackTRD.h:38