From 8dbbd429bc8791cc4906ec413e3a802adbb8b594 Mon Sep 17 00:00:00 2001 From: tradke Date: Tue, 17 Jul 2001 10:08:20 +0000 Subject: Added some more docs for the recombiner and an example shell command how to easily recombine several variables at once. Thanks to Werner. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@213 ebee0441-1374-4afa-a3b5-247f3ba15b9a --- doc/documentation.tex | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/documentation.tex b/doc/documentation.tex index f85cdc6..5dc5a70 100644 --- a/doc/documentation.tex +++ b/doc/documentation.tex @@ -61,7 +61,38 @@ To build the recombiner just do a in the Cactus toplevel directory. The recombiner executable {\tt ieee\_recombiner} will be placed in the {\tt exe//} -subdirectory.\\[3ex] +subdirectory.\\ +Its usage is: +\begin{verbatim} +~/Cactus/exe/wave> ieee_recombiner + +------------------------------- +Cactus 4 IEEEIO File Recombiner +------------------------------- + +Usage: recombiner + eg, recombiner alp_3d.file_0.ieee alp_3d.ieee + +\end{verbatim} + +If you have a lot of different variables to recombine you can use the following +Bourne shell commands to recombine them. +This assumes that the chunked output files for each variable are located in a +subdirectory {\tt \_3d/}. +The recombined output file {\tt \_3d.ieee} would then be placed into +the current working directory: + +\begin{verbatim} + for var in *_3d ; \ + do \ + { \ + if [ ! -r $var.ieee ] ; then \ + ieee_recombiner $var/$var.file_0.ieee $var.ieee; \ + fi; \ + }; \ + done +\end{verbatim} +\vspace*{3ex} {\bf Checkpointing \& Recovery}\\ -- cgit v1.2.3