Project
Loading...
Searching...
No Matches
GPUTPCNNClusterizerHost.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_GPUTPCNNCLUSTERIZERHOST_H
16#define O2_GPUTPCNNCLUSTERIZERHOST_H
17
18#include <string>
19#include <unordered_map>
20#include <vector>
21#include "ML/OrtInterface.h"
22
23using namespace o2::ml;
24
25namespace o2::OrtDataType
26{
27struct Float16_t;
28}
29
30namespace o2::gpu
31{
32
33class GPUTPCNNClusterizer;
34struct GPUSettingsProcessingNNclusterizer;
35
37{
38 public:
40 GPUTPCNNClusterizerHost(const GPUSettingsProcessingNNclusterizer&, GPUTPCNNClusterizer&);
41
42 void networkInference(o2::ml::OrtModel model, GPUTPCNNClusterizer& clusterer, size_t size, float* output, int32_t dtype);
43
44 std::unordered_map<std::string, std::string> OrtOptions;
46 std::vector<std::string> reg_model_paths;
47
48 private:
49 // Avoid including CommonUtils/StringUtils.h
50 std::vector<std::string> splitString(const std::string& input, const std::string& delimiter)
51 {
52 std::vector<std::string> tokens;
53 std::size_t pos = 0;
54 std::size_t found;
55
56 while ((found = input.find(delimiter, pos)) != std::string::npos) {
57 tokens.push_back(input.substr(pos, found - pos));
58 pos = found + delimiter.length();
59 }
60 tokens.push_back(input.substr(pos));
61
62 return tokens;
63 }
64}; // class GPUTPCNNClusterizerHost
65
66} // namespace o2::gpu
67
68#endif
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
A header library for loading ONNX models and inferencing them on CPU and GPU.
uint16_t pos
Definition RawData.h:3
std::vector< std::string > reg_model_paths
std::unordered_map< std::string, std::string > OrtOptions
void networkInference(o2::ml::OrtModel model, GPUTPCNNClusterizer &clusterer, size_t size, float *output, int32_t dtype)
GLsizeiptr size
Definition glcorearb.h:659