The Gaudi Framework  v29r0 (ff2e7097)
CPUCruncher.h
Go to the documentation of this file.
1 
7 
8 #include <tbb/concurrent_hash_map.h>
9 
10 //------------------------------------------------------------------------------
11 
20 {
21 
22 public:
23  typedef tbb::concurrent_hash_map<std::string, unsigned int> CHM;
24 
25  bool isClonable() const override { return true; }
26 
28  StatusCode execute() override;
30  StatusCode initialize() override;
32  StatusCode finalize() override;
33 
34  double get_runtime() const { return m_avg_runtime; }
35 
36  CPUCruncher( const std::string& name, // the algorithm instance name
37  ISvcLocator* pSvc ); // the Service Locator
38 
40  virtual ~CPUCruncher(); // virtual & protected desctrustor
41 
42 private:
44  CPUCruncher(); // no default constructor
46  CPUCruncher( const CPUCruncher& ); // no copy constructor
48  CPUCruncher& operator=( const CPUCruncher& ); // no assignement
50  void findPrimes( const unsigned long int );
51 
53  void calibrate();
54  long unsigned int getNCaliIters( double );
55 
58 
59  Gaudi::Property<double> m_avg_runtime{this, "avgRuntime", 1., "Average runtime of the module."};
60  Gaudi::Property<double> m_var_runtime{this, "varRuntime", 0.01, "Variance of the runtime of the module."};
61  Gaudi::Property<bool> m_local_rndm_gen{this, "localRndm", true, "Decide if the local random generator is to be used"};
62  Gaudi::Property<bool> m_shortCalib{this, "shortCalib", false, "Enable coarse grained calibration"};
63  Gaudi::Property<unsigned int> m_rwRepetitions{this, "RwRepetitions", 1, "Increase access to the WB"};
65  this, "SleepFraction", 0.0f,
66  "Fraction of time, between 0 and 1, when an algorithm is actually sleeping instead of crunching"};
67  Gaudi::Property<bool> m_invertCFD{this, "InvertDecision", false, "Invert control flow decision."};
68 
69  // To calib only once
72 
73  // For the concurrency
74  const uint MAX_INPUTS = 40;
75  const uint MAX_OUTPUTS = 10;
76 
79 
80  static CHM m_name_ncopies_map;
81 };
StatusCode execute() override
the execution of the algorithm
Gaudi::Property< float > m_sleepFraction
Definition: CPUCruncher.h:64
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
const std::string & name() const override
The identifying name of the algorithm object.
Definition: Algorithm.cpp:731
A class that implements a search for prime numbers.
Definition: CPUCruncher.h:19
Implementation of property with value of concrete type.
Definition: Property.h:319
const uint MAX_OUTPUTS
Definition: CPUCruncher.h:75
virtual ~CPUCruncher()
virtual & protected desctrustor
Definition: CPUCruncher.cpp:40
Header file for class GaudiAlgorithm.
void findPrimes(const unsigned long int)
The CPU intensive function.
Gaudi::Property< unsigned int > m_rwRepetitions
Definition: CPUCruncher.h:63
double get_runtime() const
Definition: CPUCruncher.h:34
std::vector< DataObjectHandle< DataObject > * > m_outputHandles
Definition: CPUCruncher.h:78
CPUCruncher & operator=(const CPUCruncher &)
the assignement operator is disabled
void calibrate()
Calibrate.
Definition: CPUCruncher.cpp:86
long unsigned int getNCaliIters(double)
STL class.
tbb::concurrent_hash_map< std::string, unsigned int > CHM
Definition: CPUCruncher.h:23
static std::vector< unsigned int > m_niters_vect
Definition: CPUCruncher.h:70
static CHM m_name_ncopies_map
Definition: CPUCruncher.h:80
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
Gaudi::Property< bool > m_invertCFD
Definition: CPUCruncher.h:67
The useful base class for data processing algorithms.
std::vector< DataObjectHandle< DataObject > * > m_inputHandles
Definition: CPUCruncher.h:77
static std::vector< double > m_times_vect
Definition: CPUCruncher.h:71
bool isClonable() const override
Definition: CPUCruncher.h:25
Gaudi::Property< bool > m_shortCalib
Definition: CPUCruncher.h:62
Gaudi::Property< double > m_avg_runtime
Definition: CPUCruncher.h:59
StatusCode initialize() override
Its initialization.
Definition: CPUCruncher.cpp:47
CPUCruncher()
the default constructor is disabled
Gaudi::Property< std::vector< std::string > > m_outKeys
Definition: CPUCruncher.h:57
Gaudi::Property< std::vector< std::string > > m_inpKeys
Definition: CPUCruncher.h:56
const uint MAX_INPUTS
Definition: CPUCruncher.h:74
StatusCode finalize() override
the finalization of the algorithm
Gaudi::Property< bool > m_local_rndm_gen
Definition: CPUCruncher.h:61
Gaudi::Property< double > m_var_runtime
Definition: CPUCruncher.h:60