Project
Loading...
Searching...
No Matches
GPUTPCNNClusterizer.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 O2_GPUTPCNNCLUSTERIZER_H
16#define O2_GPUTPCNNCLUSTERIZER_H
17
18#include "ChargePos.h"
19#include "GPUProcessor.h"
20
21namespace o2::OrtDataType
22{
23struct Float16_t;
24}
25
26namespace o2::gpu
27{
28
30{
31 public:
33 void* setIOPointers(void*);
37
38 // Neural network clusterization
39
45 float nnClassThreshold = 0.16;
57 int nnClusterizerDtype = 0; // 0: float16, 1: float32
58 int mISector = -1;
59
60 // Memory allocation for neural network
62 float* inputData32 = nullptr;
63 OrtDataType::Float16_t* inputData16 = nullptr;
64 float* outputDataClass = nullptr;
65 float* modelProbabilities = nullptr;
66 float* outputDataReg1 = nullptr;
67 float* outputDataReg2 = nullptr;
68
70 bool* clusterFlags = nullptr; // mSplitInTime, mSplitInPad. Techincally both flags are set in the same way -> ClusterAccumulator.cx=nullptrx
71 float* centralCharges = nullptr;
72 int16_t mMemoryId = -1;
73}; // class GPUTPCNNClusterizer
74
75} // namespace o2::gpu
76
77#endif
OrtDataType::Float16_t * inputData16
void SetMaxData(const GPUTrackingInOutPointers &)