From: degomme Date: Fri, 17 Jun 2016 13:57:42 +0000 (+0200) Subject: Have Dragonfly use only one link with n times the bw, instead of n parallel links X-Git-Tag: v3_14~959 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ed69748556a2ec335b91c98c8dd4e506d31e52e0?hp=94cd83aa1052f3d2fbff8e0d1ff295e6da5a8dd5;ds=sidebyside Have Dragonfly use only one link with n times the bw, instead of n parallel links We don't know how the load is spread by the routers : packets seems to be spread over parallel links --- diff --git a/src/surf/AsClusterDragonfly.cpp b/src/surf/AsClusterDragonfly.cpp index e0624c0e69..bb3a90c999 100644 --- a/src/surf/AsClusterDragonfly.cpp +++ b/src/surf/AsClusterDragonfly.cpp @@ -142,12 +142,12 @@ for(i=0;inumGroups_;i++){ } -void AsClusterDragonfly::createLink(char* id, Link** linkup, Link** linkdown){ +void AsClusterDragonfly::createLink(char* id, int numlinks, Link** linkup, Link** linkdown){ *linkup=NULL; *linkdown=NULL; s_sg_platf_link_cbarg_t linkTemplate; memset(&linkTemplate, 0, sizeof(linkTemplate)); - linkTemplate.bandwidth = this->cluster_->bw; + linkTemplate.bandwidth = this->cluster_->bw * numlinks; linkTemplate.latency = this->cluster_->lat; linkTemplate.policy = this->cluster_->sharing_policy; // sthg to do with that ? linkTemplate.id = id; @@ -190,12 +190,12 @@ void AsClusterDragonfly::generateLinks() { for(i=0; irouters_[i]->myNodes_=(Link**)xbt_malloc0(numLinksperLink_*this->numNodesPerBlade_*sizeof(Link*)); - this->routers_[i]->greenLinks_=(Link**)xbt_malloc0(this->numLinksGreen_*this->numBladesPerChassis_*sizeof(Link*)); - this->routers_[i]->blackLinks_=(Link**)xbt_malloc0(this->numLinksBlack_*this->numChassisPerGroup_*sizeof(Link*)); + this->routers_[i]->greenLinks_=(Link**)xbt_malloc0(this->numBladesPerChassis_*sizeof(Link*)); + this->routers_[i]->blackLinks_=(Link**)xbt_malloc0(this->numChassisPerGroup_*sizeof(Link*)); for(j=0; j< numLinksperLink_*this->numNodesPerBlade_; j+=numLinksperLink_){ id = bprintf("local_link_from_router_%d_to_node_%d_%d", i, j/numLinksperLink_, uniqueId); - this->createLink(id, &linkup, &linkdown); + this->createLink(id, 1, &linkup, &linkdown); if (this->cluster_->sharing_policy == SURF_LINK_FULLDUPLEX) { this->routers_[i]->myNodes_[j] = linkup; this->routers_[i]->myNodes_[j+1] = linkdown; @@ -211,13 +211,11 @@ void AsClusterDragonfly::generateLinks() { for(i=0; inumGroups_*this->numChassisPerGroup_;i++){ for(j=0; jnumBladesPerChassis_;j++){ for(k=j+1;knumBladesPerChassis_;k++){ - for(l=0;lnumLinksGreen_;l++){ - id = bprintf("green_link_in_chassis_%d_between_routers_%d_and_%d_%d", i%numChassisPerGroup_, j, k, uniqueId); - this->createLink(id, &linkup, &linkdown); - this->routers_[i*numBladesPerChassis_+j]->greenLinks_[k*this->numLinksGreen_+l] = linkup; - this->routers_[i*numBladesPerChassis_+k]->greenLinks_[j*this->numLinksGreen_+l] = linkdown; - uniqueId++; - } + id = bprintf("green_link_in_chassis_%d_between_routers_%d_and_%d_%d", i%numChassisPerGroup_, j, k, uniqueId); + this->createLink(id, this->numLinksGreen_, &linkup, &linkdown); + this->routers_[i*numBladesPerChassis_+j]->greenLinks_[k] = linkup; + this->routers_[i*numBladesPerChassis_+k]->greenLinks_[j] = linkdown; + uniqueId++; } } } @@ -227,35 +225,30 @@ void AsClusterDragonfly::generateLinks() { for(j=0; jnumChassisPerGroup_;j++){ for(k=j+1;knumChassisPerGroup_;k++){ for(l=0;lnumBladesPerChassis_;l++){ - for(m=0;mnumLinksBlack_;m++){ - - id = bprintf("black_link_in_group_%d_between_chassis_%d_and_%d_blade_%d_%d", i, j, k,l, uniqueId); - this->createLink(id, &linkup, &linkdown); - this->routers_[i*numBladesPerChassis_*numChassisPerGroup_+j*numBladesPerChassis_+l]->blackLinks_[k*this->numLinksBlack_+m] = linkup; - this->routers_[i*numBladesPerChassis_*numChassisPerGroup_+k*numBladesPerChassis_+l]->blackLinks_[j*this->numLinksBlack_+m] = linkdown; - uniqueId++; - } + id = bprintf("black_link_in_group_%d_between_chassis_%d_and_%d_blade_%d_%d", i, j, k,l, uniqueId); + this->createLink(id, this->numLinksBlack_,&linkup, &linkdown); + this->routers_[i*numBladesPerChassis_*numChassisPerGroup_+j*numBladesPerChassis_+l]->blackLinks_[k] = linkup; + this->routers_[i*numBladesPerChassis_*numChassisPerGroup_+k*numBladesPerChassis_+l]->blackLinks_[j] = linkdown; + uniqueId++; } } } } - //Blue links betweeen groups - Not all routers involved, only one per group is linked to others. Let's say router n of each group is linked to group n. FIXME: this limits the number of groups - + //Blue links betweeen groups - Not all routers involved, only one per group is linked to others. Let's say router n of each group is linked to group n. +//FIXME: in reality blue links may be attached to several different routers for(i=0; inumGroups_;i++){ for(j=i+1; jnumGroups_;j++){ unsigned int routernumi=i*numBladesPerChassis_*numChassisPerGroup_+j; unsigned int routernumj=j*numBladesPerChassis_*numChassisPerGroup_+i; - this->routers_[routernumi]->blueLinks_=(Link**)xbt_malloc0(this->numLinksBlue_*sizeof(Link*)); - this->routers_[routernumj]->blueLinks_=(Link**)xbt_malloc0(this->numLinksBlue_*sizeof(Link*)); - for(m=0;mnumLinksBlue_;m++){ + this->routers_[routernumi]->blueLinks_=(Link**)xbt_malloc0(sizeof(Link*)); + this->routers_[routernumj]->blueLinks_=(Link**)xbt_malloc0(sizeof(Link*)); id = bprintf("blue_link_between_group_%d_and_%d_routers_%d_and_%d_%d", i, j, routernumi,routernumj, uniqueId); - this->createLink(id, &linkup, &linkdown); - this->routers_[routernumi]->blueLinks_[m] = linkup; - this->routers_[routernumj]->blueLinks_[m] = linkdown; + this->createLink(id, this->numLinksBlue_, &linkup, &linkdown); + this->routers_[routernumi]->blueLinks_[0] = linkup; + this->routers_[routernumj]->blueLinks_[0] = linkdown; uniqueId++; - } } } } @@ -264,6 +257,7 @@ void AsClusterDragonfly::generateLinks() { void AsClusterDragonfly::getRouteAndLatency(NetCard * src, NetCard * dst, sg_platf_route_cbarg_t route, double *latency) { //Minimal routing version. + // TODO : non-minimal random one, and adaptive ? if (dst->isRouter() || src->isRouter()) return; @@ -309,17 +303,15 @@ void AsClusterDragonfly::getRouteAndLatency(NetCard * src, NetCard * dst, sg_pla //go to the router of our group connected to this one. if(currentRouter->blade_!=targetCoords[0]){ //go to the nth router in our chassis -//TODO : randomize used green link - route->link_list->push_back(currentRouter->greenLinks_[targetCoords[0]*numLinksGreen_]); + route->link_list->push_back(currentRouter->greenLinks_[targetCoords[0]]); if(latency) { - *latency += currentRouter->greenLinks_[targetCoords[0]*numLinksGreen_]->getLatency(); + *latency += currentRouter->greenLinks_[targetCoords[0]]->getLatency(); } currentRouter=routers_[myCoords[0]*(numChassisPerGroup_*numBladesPerChassis_)+myCoords[1] * numBladesPerChassis_+targetCoords[0]]; } if(currentRouter->chassis_!=0){ //go to the first chassis of our group -//TODO : randomize used black link route->link_list->push_back(currentRouter->blackLinks_[0]); if(latency) { *latency += currentRouter->blackLinks_[0]->getLatency(); @@ -327,7 +319,6 @@ void AsClusterDragonfly::getRouteAndLatency(NetCard * src, NetCard * dst, sg_pla currentRouter=routers_[myCoords[0]*(numChassisPerGroup_*numBladesPerChassis_)+targetCoords[0]]; } -//TODO : randomize used blue link //go to destination group - the only optical hop route->link_list->push_back(currentRouter->blueLinks_[0]); if(latency) { @@ -339,20 +330,18 @@ void AsClusterDragonfly::getRouteAndLatency(NetCard * src, NetCard * dst, sg_pla //same group, but same blade ? if(targetRouter->blade_ != currentRouter->blade_){ -//TODO : randomize used green link - route->link_list->push_back(currentRouter->greenLinks_[targetCoords[2]*numLinksGreen_]); + route->link_list->push_back(currentRouter->greenLinks_[targetCoords[2]]); if(latency) { - *latency += currentRouter->greenLinks_[targetCoords[2]*numLinksGreen_]->getLatency(); + *latency += currentRouter->greenLinks_[targetCoords[2]]->getLatency(); } currentRouter=routers_[targetCoords[0]*(numChassisPerGroup_*numBladesPerChassis_)+targetCoords[2]]; } //same blade, but same chassis ? if(targetRouter->chassis_ != currentRouter->chassis_){ -//TODO : randomize used black link - route->link_list->push_back(currentRouter->blackLinks_[targetCoords[1]*numLinksBlack_]); + route->link_list->push_back(currentRouter->blackLinks_[targetCoords[1]]); if(latency) { - *latency += currentRouter->blackLinks_[targetCoords[1]*numLinksBlack_]->getLatency(); + *latency += currentRouter->blackLinks_[targetCoords[1]]->getLatency(); } currentRouter=routers_[targetCoords[0]*(numChassisPerGroup_*numBladesPerChassis_)+targetCoords[1]*numBladesPerChassis_+targetCoords[2]]; } diff --git a/src/surf/AsClusterDragonfly.hpp b/src/surf/AsClusterDragonfly.hpp index 58879b9e2b..a516bbe9c8 100644 --- a/src/surf/AsClusterDragonfly.hpp +++ b/src/surf/AsClusterDragonfly.hpp @@ -36,7 +36,7 @@ class XBT_PRIVATE AsClusterDragonfly:public simgrid::surf::AsCluster { void seal() override; void generateRouters(); void generateLinks(); - void createLink(char* id, Link** linkup, Link** linkdown); + void createLink(char* id, int numlinks, Link** linkup, Link** linkdown); unsigned int * rankId_to_coords(int rankId); private: sg_platf_cluster_cbarg_t cluster_;