Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Roots of the experimentation infrastructure for Ahmed
[simgrid.git] / examples / gras / all2all / make_deployment.pl
diff --git a/examples/gras/all2all/make_deployment.pl b/examples/gras/all2all/make_deployment.pl
new file mode 100755 (executable)
index 0000000..cf0e4c0
--- /dev/null
@@ -0,0 +1,80 @@
+#! /usr/bin/perl
+
+use strict;
+
+sub usage {
+    print STDERR <<EOH
+Usage: all2all_make_deployment.pl platform_file.xml nb_host
+  
+This script generates a deployment file for the all2all program. It takes 
+a SimGrid platform file as first argument and the number of wanted peers as 
+second argument. If the amount of peers exceeds the amount of available 
+hosts in the deployment file, several peers will be placed on the same host. 
+EOH
+      ;
+    die "\n";
+}
+
+my $input    = shift @ARGV || usage();
+my $nb_hosts = shift @ARGV || usage();
+
+my @host;
+
+open IN,$input || die "Cannot open $input: $!\n";
+
+while (<IN>) {
+  next unless /<cpu name="([^"]*)"/; # "
+  
+  push @host, $1;
+}
+
+# map { print "$_\n" } @host;
+
+die "No host found in $input. Is it really a SimGrid platform file?\nCheck that you didn't pass a deployment file, for example.\n"
+  unless (scalar @host);
+
+# 
+# Build the receiver string
+
+my $receivers;    # strings containing sender argument describing all receivers.
+
+my $it_host=0;    # iterator
+my $it_port=4000; # iterator, in case we have so much processes to add that we must change it
+
+for (my $i=0; $i<$nb_hosts; $i++) {
+  $receivers .= "    <argument value=\"$host[$it_host]:$it_port\"/>\n";
+  $it_host ++;
+  if ($it_host == scalar @host) {
+    $it_host=0;
+    $it_port++;
+  }
+}
+
+#
+# and now, really generate the file
+
+print "<?xml version='1.0'?>\n";
+print "<!DOCTYPE platform_description SYSTEM \"surfxml.dtd\">\n";
+print "<platform_description>\n\n";
+
+# reset iterators
+$it_port=4000;
+$it_host=0;
+
+for (my $i=0; $i<$nb_hosts; $i++) {
+  print "  <process host=\"".$host[$it_host]."\" function=\"sender\">\n";
+  print $receivers;
+  print "  </process>\n";
+    
+  print "  <process host=\"".$host[$it_host]."\" function=\"receiver\">\n";
+  print "    <argument value=\"$it_port\"/><argument value=\"$nb_hosts\"/>\n";
+  print "  </process>\n\n";
+    
+  $it_host ++;
+  if ($it_host == scalar @host) {
+    $it_host=0;
+    $it_port++;
+  }
+}
+
+print "</platform_description>\n";