Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove a not-really-simdag example.
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Fri, 29 Jul 2016 08:19:21 +0000 (10:19 +0200)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Fri, 29 Jul 2016 08:19:21 +0000 (10:19 +0200)
True IO support will wait for SimDag redefinition

examples/simdag/CMakeLists.txt
examples/simdag/io/sd_io.c [deleted file]
examples/simdag/io/sd_io.tesh [deleted file]

index 86fae00..a8f6279 100644 (file)
@@ -1,4 +1,4 @@
-foreach(x availability daxload fail typed_tasks io properties throttling scheduling)
+foreach(x availability daxload fail typed_tasks properties throttling scheduling)
   add_executable       (sd_${x}     ${x}/sd_${x}.c)
   target_link_libraries(sd_${x}     simgrid)
   set_target_properties(sd_${x}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
@@ -39,7 +39,7 @@ set(txt_files    ${txt_files}     ${CMAKE_CURRENT_SOURCE_DIR}/dag-dotload/dag_wi
                                   ${CMAKE_CURRENT_SOURCE_DIR}/schedule-dotload/dag_with_bad_schedule.dot
                                   ${CMAKE_CURRENT_SOURCE_DIR}/schedule-dotload/dag_with_good_schedule.dot  PARENT_SCOPE)
 
-foreach(x availability daxload fail typed_tasks io properties throttling scheduling test)
+foreach(x availability daxload fail typed_tasks properties throttling scheduling test)
   ADD_TESH(simdag-${x} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/simdag --cd ${CMAKE_BINARY_DIR}/examples/simdag ${CMAKE_HOME_DIRECTORY}/examples/simdag/${x}/sd_${x}.tesh)
 endforeach()
 
diff --git a/examples/simdag/io/sd_io.c b/examples/simdag/io/sd_io.c
deleted file mode 100644 (file)
index e2cdbbc..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Copyright (c) 2013-2015. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include "simgrid/simdag.h"
-#include "xbt/log.h"
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(sd_io, "Logging specific to this SimDag example");
-
-int main(int argc, char **argv)
-{
-  unsigned int ctr;
-  xbt_dict_t current_storage_list;
-  char *mount_name;
-  char *storage_name;
-  xbt_dict_cursor_t cursor = NULL;
-
-  SD_init(&argc, argv);
-  /* Set the workstation model to default, as storage is not supported by the ptask_L07 model yet. */
-  SD_config("host/model", "default");
-  SD_create_environment(argv[1]);
-  sg_host_t *hosts = sg_host_list();
-  int total_nhosts = sg_host_count();
-
-  for (ctr=0; ctr<total_nhosts;ctr++){
-    current_storage_list = sg_host_get_mounted_storage_list(hosts[ctr]);
-    xbt_dict_foreach(current_storage_list,cursor,mount_name,storage_name)
-      XBT_INFO("Workstation '%s' mounts '%s'", sg_host_get_name(hosts[ctr]), mount_name);
-    xbt_dict_free(&current_storage_list);
-  }
-
-  SD_exit();
-  xbt_free(hosts);
-  return 0;
-}
diff --git a/examples/simdag/io/sd_io.tesh b/examples/simdag/io/sd_io.tesh
deleted file mode 100644 (file)
index 0028560..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#! ./tesh
-
-$ ${bindir:=.}/io/sd_io ${srcdir:=.}/../platforms/storage/storage.xml 
-> [0.000000] [sd_io/INFO] Workstation 'denise' mounts 'c:'
-> [0.000000] [sd_io/INFO] Workstation 'denise' mounts '/home'
-> [0.000000] [sd_io/INFO] Workstation 'alice' mounts 'c:'
-> [0.000000] [sd_io/INFO] Workstation 'carl' mounts '/home'
-> [0.000000] [sd_io/INFO] Workstation 'bob' mounts '/home'