summaryrefslogtreecommitdiff
path: root/doc/FAQ
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 11:01:41 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 11:01:41 +0000
commite189d714bc19b81ca935fe4eb5b1a3d569ee0765 (patch)
treebbc79e88417be4d0a77737afe5e474bf953fa886 /doc/FAQ
parentd2a0966455ad6a66e41bb618c4de471b166e8452 (diff)
Adding Tom's comment about why mpirun is needed to see compiled parameters
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1166 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc/FAQ')
-rw-r--r--doc/FAQ9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/FAQ b/doc/FAQ
index cc652d5d..89f4c840 100644
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -5,7 +5,7 @@
# @desc
# Some useful info.
# @enddesc
-# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/doc/FAQ,v 1.3 1999-08-24 15:47:22 goodale Exp $
+# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/doc/FAQ,v 1.4 1999-11-24 11:01:41 allen Exp $
# @@*/
@@ -37,6 +37,13 @@ If the libvast90.a library is in the same directory as your F90 script, F90 pass
the underlying G77 compile, which is of course only a valid switch when linking. The solution
is to seperate these files, e.g. into bin and lib directories.
+4) Why do I have to use e.g. "mpirun -np 1 ./exe/cactus_myconfig -O" to see the compiled
+ parameters, can't the parameters be output before MPI is initialised?
+
+Alas some MPIs add their own command-line options, so we need to do MPI_Init before
+parsing the command line, or parse it twice, once before the MPI_Init and once after,
+to detect invalid options.
+