Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
requests the flatifier to display the amount of core if not equal to 1
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 5 Apr 2014 20:28:03 +0000 (22:28 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 5 Apr 2014 20:28:07 +0000 (22:28 +0200)
Bad news: this commit does not break the tests, meaning that we have
no flatifying test that involves multi-cores...

teshsuite/simdag/platforms/flatifier.c

index b475902..e0762b0 100644 (file)
@@ -147,6 +147,9 @@ int main(int argc, char **argv)
           SD_workstation_get_name(hosts[i]),
           SD_workstation_get_power(hosts[i]));
       props = SD_workstation_get_properties(hosts[i]);
+      if (SD_workstation_get_cores(hosts[i])>1) {
+        printf(" cores=\"%d\"", SD_workstation_get_cores(hosts[i]));
+      }
       if (props && !xbt_dict_is_empty(props)) {
         printf(">\n");
         xbt_dict_foreach(props, cursor, key, data) {