Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
af661d3b60bbad9d1adadbbf2ae3d857a1fdd4c2
[simgrid.git] / include / simgrid / kernel / routing / TorusZone.hpp
1 /* Copyright (c) 2014-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_ROUTING_CLUSTER_TORUS_HPP_
7 #define SIMGRID_ROUTING_CLUSTER_TORUS_HPP_
8
9 #include <simgrid/kernel/routing/ClusterZone.hpp>
10
11 #include <vector>
12
13 namespace simgrid {
14 namespace kernel {
15 namespace routing {
16
17 /** @ingroup ROUTING_API
18  * @brief NetZone using a Torus topology
19  *
20  */
21
22 class XBT_PRIVATE TorusZone : public ClusterBase {
23   std::vector<unsigned long> dimensions_;
24
25 public:
26   explicit TorusZone(const std::string& name) : ClusterBase(name){};
27   void create_torus_links(unsigned long id, int rank, unsigned long position);
28   void get_local_route(const NetPoint* src, const NetPoint* dst, Route* into, double* latency) override;
29   void set_topology(const std::vector<unsigned long>& dimensions);
30
31   /** @brief Convert topology parameters from string to vector of uint */
32   static std::vector<unsigned long> parse_topo_parameters(const std::string& topo_parameters);
33 };
34
35 } // namespace routing
36 } // namespace kernel
37 } // namespace simgrid
38 #endif