Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bf0c8459414c53b6902d4f72ed74fb26931cdc93
[simgrid.git] / src / kernel / routing / TorusZone.hpp
1 /* Copyright (c) 2014-2016. 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 SURF_ROUTING_CLUSTER_TORUS_HPP_
7 #define SURF_ROUTING_CLUSTER_TORUS_HPP_
8
9 #include "src/kernel/routing/ClusterZone.hpp"
10 #include <vector>
11
12 namespace simgrid {
13 namespace kernel {
14 namespace routing {
15
16 /** @ingroup ROUTING_API
17  * @brief NetZone using a Torus topology
18  *
19  */
20
21 class XBT_PRIVATE TorusZone : public ClusterZone {
22 public:
23   explicit TorusZone(NetZone* father, const char* name);
24   void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position) override;
25   void getLocalRoute(NetPoint* src, NetPoint* dst, sg_platf_route_cbarg_t into, double* latency) override;
26   void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) override;
27
28 private:
29   std::vector<unsigned int> dimensions_;
30 };
31 }
32 }
33 }
34 #endif