The Gaudi Framework  v30r1 (5d4f4ae2)
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 377 of file PRGraphVisitors.cpp.

379  {
380  typename boost::graph_traits<precedence::PrecTrace>::adjacency_iterator itVB;
381  typename boost::graph_traits<precedence::PrecTrace>::adjacency_iterator itVE;
382 
383  for ( boost::tie( itVB, itVE ) = adjacent_vertices( vertex, graph ); itVB != itVE; ++itVB ) {
384  m_nodesSucceeded += 1;
385  runThroughAdjacents( *itVB, graph );
386  }
387  }
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 339 of file PRGraphVisitors.cpp.

340  {
341 
342  std::ifstream myfile;
343  myfile.open( "InputExecutionPlan.graphml", std::ios::in );
344 
345  precedence::PrecTrace execPlan;
346 
348  using boost::get;
349 
350  boost::dynamic_properties dp;
351  dp.property( "name", get( &AlgoTraceProps::m_name, execPlan ) );
352  dp.property( "index", get( &AlgoTraceProps::m_index, execPlan ) );
353  dp.property( "dataRank", get( &AlgoTraceProps::m_rank, execPlan ) );
354  dp.property( "runtime", get( &AlgoTraceProps::m_runtime, execPlan ) );
355 
356  boost::read_graphml( myfile, execPlan, dp );
357 
358  typedef boost::graph_traits<precedence::PrecTrace>::vertex_iterator itV;
360 
361  for ( vp = boost::vertices( execPlan ); vp.first != vp.second; ++vp.first ) {
362  precedence::AlgoTraceVertex v = *vp.first;
363  auto index = get( &AlgoTraceProps::m_name, execPlan );
364  if ( index[v] == node.getNodeName() ) {
365  runThroughAdjacents( v, execPlan );
366  float rank = m_nodesSucceeded;
367  node.setRank( rank );
368  reset();
369  // std::cout << "Rank of " << index[v] << " is " << rank << std::endl;
370  }
371  }
372 
373  return true;
374  }
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: