summaryrefslogtreecommitdiff
path: root/doc/UsersGuide/ThornWriters.tex
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-06-30 13:12:08 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-06-30 13:12:08 +0000
commitd568499600447f4403a0ee0e3fa817c27e75f43d (patch)
tree536a65c562453a0f77e10f454482e67338134aaa /doc/UsersGuide/ThornWriters.tex
parented3b129327948cb4f7305dfcd31e343e9b90b877 (diff)
Added missing documentation for CCTK_SyncGroupsI().
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4338 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc/UsersGuide/ThornWriters.tex')
-rw-r--r--doc/UsersGuide/ThornWriters.tex7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/UsersGuide/ThornWriters.tex b/doc/UsersGuide/ThornWriters.tex
index d833c189..1ab710e0 100644
--- a/doc/UsersGuide/ThornWriters.tex
+++ b/doc/UsersGuide/ThornWriters.tex
@@ -533,8 +533,8 @@ The keyword \texttt{SYNC} specifies groups of variables which should be
synchronised (that is, their ghostzones should be exchanged between
processors) on exit from the routine. Specifying synchronisation of
grid variables in \texttt{schedule.ccl} is an alternative to calling the
-function \texttt{CCTK\_SyncGroup()} (see the Reference Manual) from inside a
-routine. Using the \texttt{SYNC}
+functions \texttt{CCTK\_SyncGroup()} or \texttt{CCTK\_SyncGroupsI()}
+(see the Reference Manual) from inside a routine. Using the \texttt{SYNC}
keyword in the \texttt{schedule.ccl} is the preferred method, since it
provides the Flesh with more information about the behaviour of your code.
@@ -2235,7 +2235,8 @@ is a parallel unigrid driver.
\item[\texttt{CCTK\_nProcs}] Returns the number of processors being used
\item[\texttt{CCTK\_MyProc}] Returns the processor number (this starts at
processor number zero)
-\item[\texttt{CCTK\_SyncGroup}] Synchronises a group of variables by
+\item[\texttt{CCTK\_SyncGroup, CCTK\_SyncGroupsI}] Synchronises either a single
+ group or a set of groups of grid arrays by
exchanging the values held in each processor ghostzones with the
physical values of their neighbours (see the Reference Manual)
\item[\texttt{CCTK\_Barrier}] Waits for all processors to reach this point