The Gaudi Framework  v30r2 (9eca68f7)
concurrency::RankerByCummulativeOutDegree Class Reference

#include <src/PRGraphVisitors.h>

Inheritance diagram for concurrency::RankerByCummulativeOutDegree:
Collaboration diagram for concurrency::RankerByCummulativeOutDegree:

Public Member Functions

bool visit (AlgorithmNode &) override
 
void reset () override
 
void runThroughAdjacents (boost::graph_traits< precedence::PrecTrace >::vertex_descriptor, precedence::PrecTrace)
 
- Public Member Functions inherited from concurrency::IGraphVisitor
virtual ~IGraphVisitor ()=default
 
virtual bool visitEnter (DecisionNode &) const
 
virtual bool visit (DecisionNode &)
 
virtual bool visitEnter (AlgorithmNode &) const
 
virtual bool visitEnter (DataNode &) const
 
virtual bool visit (DataNode &)
 
virtual bool visitEnter (ConditionNode &) const
 
virtual bool visit (ConditionNode &)
 

Public Attributes

int m_nodesSucceeded {0}
 

Detailed Description

Definition at line 85 of file PRGraphVisitors.h.

Member Function Documentation

void concurrency::RankerByCummulativeOutDegree::reset ( )
inlineoverridevirtual

Reimplemented from concurrency::IGraphVisitor.

Definition at line 91 of file PRGraphVisitors.h.

void concurrency::RankerByCummulativeOutDegree::runThroughAdjacents ( boost::graph_traits< precedence::PrecTrace >::vertex_descriptor  vertex,
precedence::PrecTrace  graph 
)

Definition at line 421 of file PRGraphVisitors.cpp.

423  {
424  typename boost::graph_traits<precedence::PrecTrace>::adjacency_iterator itVB;
425  typename boost::graph_traits<precedence::PrecTrace>::adjacency_iterator itVE;
426 
427  for ( boost::tie( itVB, itVE ) = adjacent_vertices( vertex, graph ); itVB != itVE; ++itVB ) {
428  m_nodesSucceeded += 1;
429  runThroughAdjacents( *itVB, graph );
430  }
431  }
void runThroughAdjacents(boost::graph_traits< precedence::PrecTrace >::vertex_descriptor, precedence::PrecTrace)
bool concurrency::RankerByCummulativeOutDegree::visit ( AlgorithmNode node)
overridevirtual

Reimplemented from concurrency::IGraphVisitor.

Definition at line 383 of file PRGraphVisitors.cpp.

384  {
385 
386  std::ifstream myfile;
387  myfile.open( "InputExecutionPlan.graphml", std::ios::in );
388 
389  precedence::PrecTrace execPlan;
390 
392  using boost::get;
393 
394  boost::dynamic_properties dp;
395  dp.property( "name", get( &AlgoTraceProps::m_name, execPlan ) );
396  dp.property( "index", get( &AlgoTraceProps::m_index, execPlan ) );
397  dp.property( "dataRank", get( &AlgoTraceProps::m_rank, execPlan ) );
398  dp.property( "runtime", get( &AlgoTraceProps::m_runtime, execPlan ) );
399 
400  boost::read_graphml( myfile, execPlan, dp );
401 
402  typedef boost::graph_traits<precedence::PrecTrace>::vertex_iterator itV;
404 
405  for ( vp = boost::vertices( execPlan ); vp.first != vp.second; ++vp.first ) {
406  precedence::AlgoTraceVertex v = *vp.first;
407  auto index = get( &AlgoTraceProps::m_name, execPlan );
408  if ( index[v] == node.getNodeName() ) {
409  runThroughAdjacents( v, execPlan );
410  float rank = m_nodesSucceeded;
411  node.setRank( rank );
412  reset();
413  // std::cout << "Rank of " << index[v] << " is " << rank << std::endl;
414  }
415  }
416 
417  return true;
418  }
T open(T...args)
boost::graph_traits< PrecTrace >::vertex_descriptor AlgoTraceVertex
void runThroughAdjacents(boost::graph_traits< precedence::PrecTrace >::vertex_descriptor, precedence::PrecTrace)
boost::adjacency_list< boost::vecS, boost::vecS, boost::bidirectionalS, AlgoTraceProps > PrecTrace
STL class.

Member Data Documentation

int concurrency::RankerByCummulativeOutDegree::m_nodesSucceeded {0}

Definition at line 95 of file PRGraphVisitors.h.


The documentation for this class was generated from the following files: