Project
Loading...
Searching...
No Matches
Vertexer.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 O2_ITS_TRACKING_VERTEXER_H_
17#define O2_ITS_TRACKING_VERTEXER_H_
18
19#include <chrono>
20#include <fstream>
21#include <iomanip>
22#include <array>
23#include <iosfwd>
24#include <memory>
25
26#include <oneapi/tbb/task_arena.h>
27
34
35namespace o2::its
36{
37
38template <int NLayers>
40{
43 using LogFunc = std::function<void(const std::string& s)>;
44
45 public:
47 virtual ~Vertexer() = default;
48 Vertexer(const Vertexer&) = delete;
49 Vertexer& operator=(const Vertexer&) = delete;
50
52 auto& getVertParameters() const { return mTraits->getVertexingParameters(); }
53 void setParameters(const std::vector<VertexingParameters>& vertParams) { mVertParams = vertParams; }
54 const auto& getParameters() const noexcept { return mVertParams; }
55 void setMemoryPool(std::shared_ptr<BoundedMemoryResource> pool) { mMemoryPool = pool; }
56
57 float clustersToVertices(LogFunc = [](const std::string& s) { std::cout << s << '\n'; });
59
60 template <typename... T>
61 void findTracklets(T&&... args)
62 {
63 mTraits->computeTracklets(std::forward<T>(args)...);
64 }
65 template <typename... T>
66 void validateTracklets(T&&... args)
67 {
68 mTraits->computeTrackletMatching(std::forward<T>(args)...);
69 }
70 template <typename... T>
71 void findVertices(T&&... args)
72 {
73 mTraits->computeVertices(std::forward<T>(args)...);
74 }
75
77
78 template <typename... T>
79 void initialiseVertexer(T&&... args)
80 {
81 mTraits->initialise(std::forward<T>(args)...);
82 }
83 template <typename... T>
84 void initialiseTimeFrame(T&&... args);
85
86 void sortVertices();
87
88 // Utils
89 template <typename... T>
90 float evaluateTask(void (Vertexer::*task)(T...), std::string_view taskName, int iteration, LogFunc& logger, T&&... args);
91
92 void printEpilog(LogFunc& logger,
93 const unsigned int trackletN01, const unsigned int trackletN12,
94 const unsigned selectedN, const unsigned int vertexN, const unsigned int totalVertexN,
95 const float trackletT, const float selecT, const float vertexT);
96
97 void setNThreads(int n, std::shared_ptr<tbb::task_arena>& arena) { mTraits->setNThreads(n, arena); }
98
99 private:
100 std::uint32_t mTimeFrameCounter = 0;
101
102 VertexerTraitsN* mTraits = nullptr;
103 TimeFrameN* mTimeFrame = nullptr;
104
105 std::vector<VertexingParameters> mVertParams;
106 std::shared_ptr<BoundedMemoryResource> mMemoryPool;
107
108 enum State {
109 Init = 0,
110 Trackleting,
111 Validating,
112 Finding,
113 TruthSeeding,
114 NStates,
115 };
116 State mCurState{Init};
117 static constexpr std::array<const char*, NStates> StateNames{"Initialisation", "Tracklet finding", "Tracklet validation", "Vertex finding", "Truth seeding"};
118};
119
120template <int NLayers>
121template <typename... T>
122float Vertexer<NLayers>::evaluateTask(void (Vertexer<NLayers>::*task)(T...), std::string_view taskName, int iteration, LogFunc& logger, T&&... args)
123{
124 float diff{0.f};
125
126 if constexpr (constants::DoTimeBenchmarks) {
127 auto start = std::chrono::high_resolution_clock::now();
128 (this->*task)(std::forward<T>(args)...);
129 auto end = std::chrono::high_resolution_clock::now();
130
131 std::chrono::duration<double, std::milli> diff_t{end - start};
132 diff = diff_t.count();
133
134 std::stringstream sstream;
135 if (taskName.empty()) {
136 sstream << diff << "\t";
137 } else {
138 sstream << std::setw(2) << " - " << taskName << " completed in: " << diff << " ms";
139 }
140 logger(sstream.str());
141
142 if (mVertParams[0].SaveTimeBenchmarks) {
143 std::string taskNameStr(taskName);
144 std::transform(taskNameStr.begin(), taskNameStr.end(), taskNameStr.begin(),
145 [](unsigned char c) { return std::tolower(c); });
146 std::replace(taskNameStr.begin(), taskNameStr.end(), ' ', '_');
147 if (std::ofstream file{"its_time_benchmarks.txt", std::ios::app}) {
148 file << "vtx:" << iteration << '\t' << taskNameStr << '\t' << diff << '\n';
149 }
150 }
151 } else {
152 (this->*task)(std::forward<T>(args)...);
153 }
154
155 if (mVertParams[iteration].PrintMemory) {
156 LOGP(info, "iter:{}:{}: {}", iteration, StateNames[mCurState], mMemoryPool->asString());
157 }
158
159 return diff;
160}
161
162} // namespace o2::its
163#endif
uint32_t c
Definition RawData.h:2
Class to compute the primary vertex in ITS from tracklets.
void setNThreads(int n, std::shared_ptr< tbb::task_arena > &arena)
virtual void initialise(const TrackingParameters &trackingParams, const int iteration=0)
virtual void computeTracklets(const int iteration=0)
virtual void computeVertices(const int iteration=0)
virtual void computeTrackletMatching(const int iteration=0)
Vertexer(const Vertexer &)=delete
void initialiseVertexer(T &&... args)
Definition Vertexer.h:79
float evaluateTask(void(Vertexer::*task)(T...), std::string_view taskName, int iteration, LogFunc &logger, T &&... args)
void setParameters(const std::vector< VertexingParameters > &vertParams)
Definition Vertexer.h:53
void setMemoryPool(std::shared_ptr< BoundedMemoryResource > pool)
Definition Vertexer.h:55
void initialiseTimeFrame(T &&... args)
const auto & getParameters() const noexcept
Definition Vertexer.h:54
void setNThreads(int n, std::shared_ptr< tbb::task_arena > &arena)
Definition Vertexer.h:97
void addTruthSeeds()
Definition Vertexer.h:76
virtual ~Vertexer()=default
void adoptTimeFrame(TimeFrameN &tf)
Definition Vertexer.cxx:132
void printEpilog(LogFunc &logger, const unsigned int trackletN01, const unsigned int trackletN12, const unsigned selectedN, const unsigned int vertexN, const unsigned int totalVertexN, const float trackletT, const float selecT, const float vertexT)
Definition Vertexer.cxx:139
void validateTracklets(T &&... args)
Definition Vertexer.h:66
Vertexer & operator=(const Vertexer &)=delete
float clustersToVertices(LogFunc=[](const std::string &s) { std::cout<< s<< '\n';})
Definition Vertexer.cxx:39
void findTracklets(T &&... args)
Definition Vertexer.h:61
auto & getVertParameters() const
Definition Vertexer.h:52
void findVertices(T &&... args)
Definition Vertexer.h:71
void filterMCTracklets()
GLdouble n
Definition glcorearb.h:1982
GLuint GLuint end
Definition glcorearb.h:469
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLuint start
Definition glcorearb.h:469
constexpr bool DoTimeBenchmarks
Definition Constants.h:31
std::unique_ptr< GPUReconstructionTimeframe > tf