Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
put the replay stuff in its own directory
authorsuter <frederic.suter@cc.in2p3.fr>
Wed, 26 Sep 2012 09:17:46 +0000 (11:17 +0200)
committersuter <frederic.suter@cc.in2p3.fr>
Wed, 26 Sep 2012 13:00:19 +0000 (15:00 +0200)
examples/smpi/actions.txt [deleted file]
examples/smpi/replay/replay.c [new file with mode: 0644]

diff --git a/examples/smpi/actions.txt b/examples/smpi/actions.txt
deleted file mode 100644 (file)
index 5456907..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-0 send 1 1e6
-1 recv 0
-1 compute 1e9
-1 Isend 0 1e6
-0 recv 1
diff --git a/examples/smpi/replay/replay.c b/examples/smpi/replay/replay.c
new file mode 100644 (file)
index 0000000..3aad3c2
--- /dev/null
@@ -0,0 +1,18 @@
+/* Copyright (c) 2009, 2010, 2011, 2012. 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 "smpi/smpi.h"
+
+int main(int argc, char *argv[])
+{
+  smpi_replay_init(&argc, &argv);
+
+  /* Actually do the simulation using smpi_action_trace_run */
+  smpi_action_trace_run(NULL);
+  smpi_replay_finalize();
+
+  return 0;
+}