Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename NetCards to NetPoints
[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
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /** @ingroup ROUTING_API
16  * @brief NetZone using a Torus topology
17  *
18  */
19
20 class XBT_PRIVATE TorusZone : public ClusterZone {
21 public:
22   explicit TorusZone(NetZone* father, const char* name);
23   ~TorusZone() override;
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   xbt_dynar_t dimensions_ = nullptr;
30 };
31 }
32 }
33 }
34 #endif