Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CPUCruncher.h
Go to the documentation of this file.
1 
7 
8 #include <tbb/concurrent_hash_map.h>
9 
10 //------------------------------------------------------------------------------
11 
19 class CPUCruncher : public GaudiAlgorithm {
20 
21 public:
22  typedef tbb::concurrent_hash_map<std::string, unsigned int> CHM;
23 
24  bool isClonable() const override { return true; }
25 
27  StatusCode execute() override;
29  StatusCode initialize() override;
31  StatusCode finalize() override;
32 
33  double get_runtime() const { return m_avg_runtime; }
34 
35  CPUCruncher( const std::string& name, // the algorithm instance name
36  ISvcLocator* pSvc ); // the Service Locator
37 
39  virtual ~CPUCruncher(); // virtual & protected desctrustor
40 
41 private:
43  CPUCruncher(); // no default constructor
45  CPUCruncher( const CPUCruncher& ); // no copy constructor
47  CPUCruncher& operator=( const CPUCruncher& ); // no assignement
49 
52  bool m_declAugmented{false};
53  Gaudi::Property<bool> m_loader{this, "Loader", false, "Declare the algorithm to be a data loader"};
54 
57 
58  Gaudi::Property<double> m_avg_runtime{this, "avgRuntime", 1., "Average runtime of the module."};
59  Gaudi::Property<double> m_var_runtime{this, "varRuntime", 0.01, "Variance of the runtime of the module."};
60  Gaudi::Property<bool> m_local_rndm_gen{this, "localRndm", true, "Decide if the local random generator is to be used"};
61  Gaudi::Property<unsigned int> m_rwRepetitions{this, "RwRepetitions", 1, "Increase access to the WB"};
63  this, "SleepFraction", 0.0f,
64  "Fraction of time, between 0 and 1, when an algorithm is actually sleeping instead of crunching"};
65  Gaudi::Property<bool> m_invertCFD{this, "InvertDecision", false, "Invert control flow decision."};
66  Gaudi::Property<unsigned int> m_failNEvents{this, "FailNEvents", 0, "Return FAILURE on every Nth event"};
67 
68  // For the concurrency
69  const uint MAX_INPUTS = 40;
70  const uint MAX_OUTPUTS = 10;
71 
74 
75  static CHM m_name_ncopies_map;
76 
77  // CPUCrunchSvc
79 };
StatusCode execute() override
the execution of the algorithm
Definition: CPUCruncher.cpp:95
SmartIF< ICPUCrunchSvc > m_crunchSvc
Definition: CPUCruncher.h:78
Gaudi::Property< float > m_sleepFraction
Definition: CPUCruncher.h:62
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
A class that implements a search for prime numbers.
Definition: CPUCruncher.h:19
Implementation of property with value of concrete type.
Definition: Property.h:352
Gaudi::Property< bool > m_loader
Definition: CPUCruncher.h:53
const uint MAX_OUTPUTS
Definition: CPUCruncher.h:70
const std::string & name() const override
The identifying name of the algorithm object.
Definition: Algorithm.cpp:635
virtual ~CPUCruncher()
virtual & protected desctrustor
Definition: CPUCruncher.cpp:34
Header file for class GaudiAlgorithm.
Gaudi::Property< unsigned int > m_rwRepetitions
Definition: CPUCruncher.h:61
double get_runtime() const
Definition: CPUCruncher.h:33
std::vector< DataObjectHandle< DataObject > * > m_outputHandles
Definition: CPUCruncher.h:73
CPUCruncher & operator=(const CPUCruncher &)
the assignement operator is disabled
STL class.
tbb::concurrent_hash_map< std::string, unsigned int > CHM
Definition: CPUCruncher.h:22
static CHM m_name_ncopies_map
Definition: CPUCruncher.h:75
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
Gaudi::Property< bool > m_invertCFD
Definition: CPUCruncher.h:65
The useful base class for data processing algorithms.
std::vector< DataObjectHandle< DataObject > * > m_inputHandles
Definition: CPUCruncher.h:72
bool isClonable() const override
Definition: CPUCruncher.h:24
void declareRuntimeRequestedOutputs()
The CPU intensive function.
Definition: CPUCruncher.cpp:79
STL class.
Gaudi::Property< double > m_avg_runtime
Definition: CPUCruncher.h:58
StatusCode initialize() override
Its initialization.
Definition: CPUCruncher.cpp:40
CPUCruncher()
the default constructor is disabled
Gaudi::Property< unsigned int > m_failNEvents
Definition: CPUCruncher.h:66
Gaudi::Property< std::vector< std::string > > m_outKeys
Definition: CPUCruncher.h:56
Gaudi::Property< std::vector< std::string > > m_inpKeys
Definition: CPUCruncher.h:55
const uint MAX_INPUTS
Definition: CPUCruncher.h:69
StatusCode finalize() override
the finalization of the algorithm
Gaudi::Property< bool > m_local_rndm_gen
Definition: CPUCruncher.h:60
Gaudi::Property< double > m_var_runtime
Definition: CPUCruncher.h:59
bool m_declAugmented
Definition: CPUCruncher.h:52