SST  7.0.0
StructuralSimulationToolkit
simplepart.h
1 // Copyright 2009-2017 Sandia Corporation. Under the terms
2 // of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S.
3 // Government retains certain rights in this software.
4 //
5 // Copyright (c) 2009-2017, Sandia Corporation
6 // All rights reserved.
7 //
8 // This file is part of the SST software package. For license
9 // information, see the LICENSE file in the top level directory of the
10 // distribution.
11 #ifndef SST_CORE_PART_SIMPLEPART_H
12 #define SST_CORE_PART_SIMPLEPART_H
13 
14 #include <map>
15 #include <sst/core/sst_types.h>
16 #include <sst/core/part/sstpart.h>
17 #include <sst/core/elementinfo.h>
18 #include <sst/core/configGraph.h>
19 
20 namespace SST {
21 namespace Partition{
22 
24 
25 private:
26  RankInfo world_size;
27  uint32_t total_parts;
28 
29  RankInfo convertPartNum(uint32_t partNum) {
30  return RankInfo(partNum / world_size.thread, partNum % world_size.thread);
31  }
32 
33  void simple_partition_step(PartitionComponentMap_t& component_map,
34  ComponentId_t* setA, const int lengthA, int rankA,
35  ComponentId_t* setB, const int lengthB, int rankB,
36  std::map<ComponentId_t, std::map<ComponentId_t, SimTime_t>*> timeTable,
37  int step);
38 public:
39 
40  SimplePartitioner(RankInfo total_ranks, RankInfo my_rank, int verbosity);
42  ~SimplePartitioner() {}
43 
44  void performPartition(PartitionGraph* graph) override;
45 
46  bool requiresConfigGraph() override { return false; }
47  bool spawnOnAllRanks() override { return false; }
48 
49  SST_ELI_REGISTER_PARTITIONER(SimplePartitioner,"sst","simple","Simple partitioning scheme which attempts to partition on high latency links while balancing number of components per rank.")
50 
51  SST_ELI_DOCUMENT_VERSION(1,0,0)
52 };
53 
54 } // namespace partition
55 } //namespace SST
56 #endif //SST_CORE_PART_SIMPLERPART_H
Definition: simplepart.h:23
Definition: configGraph.h:530
Definition: action.cc:17
Definition: rankInfo.h:21
Base class for Partitioning graphs.
Definition: sstpart.h:31