[Swift-commit] r7212 - SwiftTutorials/swift-cloud-tutorial/doc

davidk at ci.uchicago.edu davidk at ci.uchicago.edu
Tue Oct 22 15:00:04 CDT 2013


Author: davidk
Date: 2013-10-22 15:00:03 -0500 (Tue, 22 Oct 2013)
New Revision: 7212

Modified:
   SwiftTutorials/swift-cloud-tutorial/doc/README
Log:
Update doc with new pool names


Modified: SwiftTutorials/swift-cloud-tutorial/doc/README
===================================================================
--- SwiftTutorials/swift-cloud-tutorial/doc/README	2013-10-22 19:45:17 UTC (rev 7211)
+++ SwiftTutorials/swift-cloud-tutorial/doc/README	2013-10-22 20:00:03 UTC (rev 7212)
@@ -349,7 +349,7 @@
 the equivalent python version (simulate.py). The new apps file now looks like this:
 
 -----
-localhost simulate simulate.py
+sys::[cat ../part02/apps]
 -----
 
 Swift does not need to know anything about the language an application is written in. The application 
@@ -518,16 +518,16 @@
 `sim_N.log`.  The log files provide data on the runtime environment of
 each app invocation. For example:
 
-FIXME: The output below needs to get recaptured for worker nodes
-
 -----
-$ cat output/sim_0.log
-Called as: /home/users/p01532/swift-osdc-tutorial/app/simulate.sh: --timesteps 1 --range 100 --nvalues 5
+$ cat output/sim_0.log 
 
-Start time: Tue Aug 27 12:17:43 CDT 2013
-Running on node: nid00018
-Running as user: uid=61532(p01532) gid=61532 groups=61532
+Called as: simulate.sh: --timesteps 1 --range 100 --nvalues 5
 
+Start time: Tue Oct 22 14:54:11 CDT 2013
+Running as user: uid=5116(davidk) gid=311(collab) groups=311(collab),104(fuse),1349(swift),45053(swat)
+Running on node: stomp
+Node IP address: 140.221.9.237 
+
 Simulation parameters:
 
 bias=0
@@ -543,15 +543,15 @@
 
 Environment:
 
-ALPS_APP_DEPTH=32
-ASSEMBLER_X86_64=/opt/cray/cce/8.2.0.173/cray-binutils/x86_64-unknown-linux-gnu/bin/as
-ASYNCPE_DIR=/opt/cray/xt-asyncpe/5.23.02
-ASYNCPE_VERSION=5.23.02
-...
+EDITOR=vim
+HOME=/homes/davidk
+JAVA_HOME=/nfs/proj-davidk/jdk1.7.0_01
+LANG=C
+....
 -----
 
 To tell Swift to run the apps on compute nodes, we specify in the
-`apps` file that the apps should be executed on the `osdc` site
+`apps` file that the apps should be executed on the `cloud` site
 (instead of the `localhost` site).  We can specify the location of
 each app in the third field of the `apps` file, with either an
 absolute pathname or the name of an executable to be located in
@@ -559,16 +559,16 @@
 
 -----
 $ cat apps
-raven simulate simulate.sh
-raven stats    stats.sh
+cloud simulate simulate.sh
+cloud stats    stats.sh
 -----
 
 You can experiment, for example, with an alternate version of stats.sh by specfying that app's location explicitly:
 
 -----
 $ cat apps
-raven simulate simulate.sh
-raven stats    /home/users/p01532/bin/my-alt-stats.sh
+cloud simulate simulate.sh
+cloud stats    /home/users/p01532/bin/my-alt-stats.sh
 -----
 
 We can see that when we run many apps requesting a larger set of nodes (6), we are indeed running on the compute nodes:




More information about the Swift-commit mailing list