From jthorn at aei.mpg.de Thu Jun 1 07:38:11 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Thu, 1 Jun 2006 07:38:11 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/main CommandLine.c ProcessCommandLine.c" Message-ID: <200606011238.k51CcBbi006410@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/main In directory cvs.cct.lsu.edu:/tmp/cvs-serv6404 Modified Files: CommandLine.c ProcessCommandLine.c Log Message: apply patch http://www.cactuscode.org/old/pipermail/patches/2006-May/000180.html This documents the 5 (!) separate places in the code which must be changed to add a new command-line option. See also the discussion in http://www.cactuscode.org/mailman/private/cactusmaint/2006-May/021429.html http://www.cactuscode.org/mailman/private/cactusmaint/2006-May/021430.html From dprideout at gmail.com Tue Jun 6 10:25:39 2006 From: dprideout at gmail.com (David Rideout) Date: Tue, 6 Jun 2006 10:25:39 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus Makefile" Message-ID: <200606061525.k56FPdbi019166@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus In directory cvs.cct.lsu.edu:/tmp/cvs-serv19156 Modified Files: Makefile Log Message: fix typo From swhite at aei.mpg.de Thu Jun 8 07:20:16 2006 From: swhite at aei.mpg.de (Steve White) Date: Thu, 8 Jun 2006 07:20:16 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make/known-architectures aix" Message-ID: <200606081220.k58CKHbi004901@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make/known-architectures In directory cvs.cct.lsu.edu:/tmp/cvs-serv4897 Modified Files: aix Log Message: Applied patch aix known-architectures for XLC/XLF http://www.cactuscode.org/old/pipermail/patches/2006-April/000159.html > ... a patch for the AIX known-architectures file, meant to > improve performance for the IBM XLC/XLF compilers. > > I made the default optimization to be > -O3 -qarch=auto -qtune=auto -qcache=auto -qhot > for all the IBM compilers. > > I also made XLF to suppress congratulatory messages ("Yay! I compiled!) > on successful compilation. > > I tested -02 through -O5. On BSSNCarpet runs, "-O3 -qhot" performed > best--but beware, it moves instructions. While turning on -qstrict > fixes this, it also degrades performance. The -qarch=auto causes the > code to be customized for the architecture on which it is compiled. > The higher levels turn on -qipa which does global optimizations and > work best if this option is also supplied at link time. > > See http://publib.boulder.ibm.com/infocenter/comphelp/v7v91/index.jsp From swhite at aei.mpg.de Thu Jun 8 07:22:06 2006 From: swhite at aei.mpg.de (Steve White) Date: Thu, 8 Jun 2006 07:22:06 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make/known-architectures darwin" Message-ID: <200606081222.k58CM6bi004917@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make/known-architectures In directory cvs.cct.lsu.edu:/tmp/cvs-serv4904 Modified Files: darwin Log Message: Application of patch http://www.cactuscode.org/old/pipermail/patches/2006-April/000160.html ... a patch for the known-architectures file for Darwin for the XLF compiler. Primarily it is to improve the speed, by making the optimization options to be -O3 -qhot -qarch=auto -qtune=auto -qcache=auto This gets quite good performance, but moves instructions. The various "auto's" cause the compiler to generate optimal code for the platform on which the compiler is running. Also, I made it supress the congratulatory message ("Yay, I compiled"). Also, I test the compiler version major and minor numbers so that darned "-no-cpp-precomp" option is included only when the version is less than 3.3. From swhite at aei.mpg.de Thu Jun 8 07:28:28 2006 From: swhite at aei.mpg.de (Steve White) Date: Thu, 8 Jun 2006 07:28:28 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make aclocal.m4 configure configure.in" Message-ID: <200606081228.k58CSSbi004971@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make In directory cvs.cct.lsu.edu:/tmp/cvs-serv4964 Modified Files: aclocal.m4 configure configure.in Log Message: Application of patch Fortran REAL*16 detection http://www.cactuscode.org/old/pipermail/patches/2006-April/000164.html ... a patch that makes Cactus directly detect Fortran support for a REAL*16 type. The problem has been that Cactus based CCTK_REAL16 on support for the C type 'long double'. This would cause it to create Fortran code for REAL*16, a type which was sometimes not supported. In particular, on a 64-bit Athlon machine with Gnu 4.1.0, gfortran defines REAL*8 but not REAL*16, while gcc defines 'long double'. This caused thorn AEIThorns/Fortran to fail to compile. This patch causes the configuration to directly compile Fortran code that features REAL*16, and define CCTK_REAL16 only if that compiles *and* C's 'long double' is supported. When you make config, you will see a new line about Fortran REAL*16. I have tested the enclosed patch on my laptop with Gnu 4.10 and Intel 9.0 compilers 64-bit AMD Athlon with same compilers POWER4 with IBM XL compilers BUT NOTE: I have severe doubts about using REAL*16 on any of these architectures. That 16-byte (128-bit) type is not natively supported on the Xeon, Athlon, or POWER machines. While some compilers support such types, calculation is done in software, not on the FPU. From swhite at aei.mpg.de Thu Jun 8 07:34:39 2006 From: swhite at aei.mpg.de (Steve White) Date: Thu, 8 Jun 2006 07:34:39 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/sbin GridFuncStuff.pl" Message-ID: <200606081234.k58CYdbi004990@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/sbin In directory cvs.cct.lsu.edu:/tmp/cvs-serv4983 Modified Files: GridFuncStuff.pl Log Message: Application of patch GridFuncStuff bug fix and cleanup http://www.cactuscode.org/old/pipermail/patches/2006-May/000165.html It fixes two minor bugs (that is, bugs that weren't bugging anybody right now). It also includes an overall cleanup of the code, which begain with the first bug fix, and resulted in the discovery of the second bug. The first bug fix was to put in use strict; (According to L. Wall, a Perl file without use strict constitutes a bug.) This resulted in lots of errors about variables needing their scope to be specified. So I did this. At the end, I found that I couldn't fix a certain occurrance of $group. There was no sensible way that it was being set. The code was to produce a warning concerning creating groups with mixed dimensions. See 'warn_mixeddim_gfs'. The Perl code was taking a global value of $group set at build time to be the last group in a loop. However, the offending group is determined at run time in CreateThornGroupInitializers. So the warning message would typically be wrong. Affect code written in bindings/Variables/.c Also: Perl 5-ied function calls deleted great wads of commented-out code Testing ------- Ran testsuites on my laptop with Whisky benchmark thornlist. No change was detected in the results. From swhite at aei.mpg.de Thu Jun 8 09:37:22 2006 From: swhite at aei.mpg.de (Steve White) Date: Thu, 8 Jun 2006 09:37:22 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/main WarnLevel.c" Message-ID: <200606081437.k58EbMbi005339@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/main In directory cvs.cct.lsu.edu:/tmp/cvs-serv5326 Modified Files: WarnLevel.c Log Message: Application of patch WarnLevel bold off unless output is to tty http://www.cactuscode.org/old/pipermail/patches/2006-April/000161.html I got tired of seeing all the terminal control characters in Cactus output that was piped to files. Tested by watching Cactus output on a terminal, then piping ouput from the same program to a file. E.g. in bash make config-testsuite 2>&1 |tee > ts From swhite at aei.mpg.de Thu Jun 8 10:21:52 2006 From: swhite at aei.mpg.de (Steve White) Date: Thu, 8 Jun 2006 10:21:52 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make/extras/MPI LAM" Message-ID: <200606081521.k58FLqbi006230@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make/extras/MPI In directory cvs.cct.lsu.edu:/tmp/cvs-serv6226 Modified Files: LAM Log Message: Made to locate LAM on my Ubuntu 6.06 system, with LAM 7.1.1 From swhite at aei.mpg.de Fri Jun 9 09:28:59 2006 From: swhite at aei.mpg.de (Steve White) Date: Fri, 9 Jun 2006 09:28:59 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make/known-architectures linux" Message-ID: <200606091428.k59ESxbi018002@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make/known-architectures In directory cvs.cct.lsu.edu:/tmp/cvs-serv17975 Modified Files: linux Log Message: PG compiler flags improvements 1) Got rid of --instantiate=used which only irritates recent compilers. 2) Broke off warning settings which were previously part of e.g. F90_OPTIMISE_FLAGS into F90_WARN_FLAGS so now you see most of the "loop unroll" etc warnings only if WARN is on. From swhite at aei.mpg.de Fri Jun 9 10:52:16 2006 From: swhite at aei.mpg.de (Steve White) Date: Fri, 9 Jun 2006 10:52:16 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make/known-architectures linux" Message-ID: <200606091552.k59FqGbi018284@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make/known-architectures In directory cvs.cct.lsu.edu:/tmp/cvs-serv18264/lib/make/known-architectures Modified Files: linux Log Message: One too many flags ended in the WARN flags From schnetter at aei.mpg.de Tue Jun 13 10:06:00 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Tue, 13 Jun 2006 10:06:00 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc FAQ" Message-ID: <200606131506.k5DF60le023480@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc In directory cvs.cct.lsu.edu:/tmp/cvs-serv23476 Modified Files: FAQ Log Message: Update FAQ entry about compiling Fortran thorns in the correct order. Tell people to use capabilities instead of make.configuration.defn. Update FAQ entry about detecting MPI in make.configuration.defn. From schnetter at aei.mpg.de Tue Jun 13 10:06:19 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Tue, 13 Jun 2006 10:06:19 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide RunningCactus.tex" Message-ID: <200606131506.k5DF6Jle023489@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv23485/UsersGuide Modified Files: RunningCactus.tex Log Message: Small layout change. From swhite at aei.mpg.de Thu Jun 15 09:35:04 2006 From: swhite at aei.mpg.de (Steve White) Date: Thu, 15 Jun 2006 09:35:04 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/include cctk.h" Message-ID: <200606151435.k5FEZ4le013891@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/include In directory cvs.cct.lsu.edu:/tmp/cvs-serv13818 Modified Files: cctk.h Log Message: Application of Frank L??ffler's patch of 28.02.06 reduces FARGUMENTS line length in cctk.h http://www.cactuscode.org/old/pipermail/patches/2006-February/000138.html "Spaces in _CCTK_FARGUMENTS removed to use as less space as possible. This leaves thorn writers more space for their own variables. Space can be a problem because of Fortran standard and/or compiler limitations." From jthorn at aei.mpg.de Thu Jun 22 10:33:35 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Thu, 22 Jun 2006 10:33:35 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide Appendices.tex" Message-ID: <200606221533.k5MFXZle007751@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv7746 Modified Files: Appendices.tex Log Message: += INOUT intent for aliaed-function arguments, as per http://www.cactuscode.org/old/pipermail/developers/2006-June/002882.html and following discussion From jthorn at aei.mpg.de Thu Jun 22 10:35:12 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Thu, 22 Jun 2006 10:35:12 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide ThornWriters.tex" Message-ID: <200606221535.k5MFZCle007777@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv7766 Modified Files: ThornWriters.tex Log Message: += INOUT intent for aliaed-function arguments, as per http://www.cactuscode.org/old/pipermail/developers/2006-June/002882.html and following discussion From jthorn at aei.mpg.de Thu Jun 22 10:38:58 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Thu, 22 Jun 2006 10:38:58 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide ThornWriters.tex" Message-ID: <200606221538.k5MFcwle007788@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv7783 Modified Files: ThornWriters.tex Log Message: aliased functions INOUT arguments: * oops, another place where INOUT needs to be mentioned * clarify that OUT or INOUT array arguments may indeed be modified From jthorn at aei.mpg.de Thu Jun 22 10:41:00 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Thu, 22 Jun 2006 10:41:00 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide ThornWriters.tex" Message-ID: <200606221541.k5MFf0le007803@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv7799 Modified Files: ThornWriters.tex Log Message: fix description of INOUT arrays for aliased fns From jthorn at aei.mpg.de Thu Jun 22 10:45:29 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Thu, 22 Jun 2006 10:45:29 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide ThornWriters.tex" Message-ID: <200606221545.k5MFjTle007822@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv7818 Modified Files: ThornWriters.tex Log Message: fix aliased-function example so we can pass input to it as well as get output! From schnetter at aei.mpg.de Thu Jun 22 22:31:46 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 22:31:46 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide RunningCactus.tex" Message-ID: <200606230331.k5N3Vkle015262@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv15257/doc/UsersGuide Modified Files: RunningCactus.tex Log Message: Add a new configuration flag PROFILE=yes, which enables profiling in a build. This flag is equivalent to OPTIMISE=yes and DEBUG=yes. Additional compiler options {C,CXX,F77,F90}_PROFILE_FLAGS are also introduced. The configuration stage sets the F77 flags to the F90 flags if an F90 compiler is found. This flag setting was done too early, namely before the default values for the F90 flags were set. This flag setting has been moved to a later time. The link command used undefined make variables $(OPTIMISE_C) etc. These variables have been removed. Instead $(CXX_OPTIMISE_FLAGS) etc. are added to the link statement. This makes the linker pick up the correct flags e.g. for profiling. From schnetter at aei.mpg.de Thu Jun 22 22:31:47 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 22:31:47 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make configure configure.in make.config.defn.in make.configuration" Message-ID: <200606230331.k5N3Vlle015266@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make In directory cvs.cct.lsu.edu:/tmp/cvs-serv15257/lib/make Modified Files: configure configure.in make.config.defn.in make.configuration Log Message: Add a new configuration flag PROFILE=yes, which enables profiling in a build. This flag is equivalent to OPTIMISE=yes and DEBUG=yes. Additional compiler options {C,CXX,F77,F90}_PROFILE_FLAGS are also introduced. The configuration stage sets the F77 flags to the F90 flags if an F90 compiler is found. This flag setting was done too early, namely before the default values for the F90 flags were set. This flag setting has been moved to a later time. The link command used undefined make variables $(OPTIMISE_C) etc. These variables have been removed. Instead $(CXX_OPTIMISE_FLAGS) etc. are added to the link statement. This makes the linker pick up the correct flags e.g. for profiling. From schnetter at aei.mpg.de Thu Jun 22 22:46:38 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 22:46:38 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/sbin f_depend_modules.pl" Message-ID: <200606230346.k5N3kcle015332@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/sbin In directory cvs.cct.lsu.edu:/tmp/cvs-serv15328 Modified Files: f_depend_modules.pl Log Message: Generate dependencies for Fortran include statements only if the included file is actually found. The previous code required that each included file be in the same directory as the including file. The new code treats using modules and including files in the same manner. From schnetter at aei.mpg.de Thu Jun 22 23:16:13 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 23:16:13 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide RunningCactus.tex" Message-ID: <200606230416.k5N4GDle015556@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv15542/doc/UsersGuide Modified Files: RunningCactus.tex Log Message: Add a new command line option to select the buffering mode of stdout. The option is "-b ", or "-buffering=", where mode can be "no", "line", or "full". This option uses the ANSI C function call setvbuf() to select the corresponding buffering mode. The buffering mode can be selected only once in a portable programme, and it has to be selected before the first output occurs. This means that it has to be implemented in the flesh. From schnetter at aei.mpg.de Thu Jun 22 23:16:13 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 23:16:13 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/include CommandLine.h" Message-ID: <200606230416.k5N4GDle015560@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/include In directory cvs.cct.lsu.edu:/tmp/cvs-serv15542/src/include Modified Files: CommandLine.h Log Message: Add a new command line option to select the buffering mode of stdout. The option is "-b ", or "-buffering=", where mode can be "no", "line", or "full". This option uses the ANSI C function call setvbuf() to select the corresponding buffering mode. The buffering mode can be selected only once in a portable programme, and it has to be selected before the first output occurs. This means that it has to be implemented in the flesh. From schnetter at aei.mpg.de Thu Jun 22 23:16:13 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 23:16:13 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/main CommandLine.c ProcessCommandLine.c" Message-ID: <200606230416.k5N4GDle015564@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/main In directory cvs.cct.lsu.edu:/tmp/cvs-serv15542/src/main Modified Files: CommandLine.c ProcessCommandLine.c Log Message: Add a new command line option to select the buffering mode of stdout. The option is "-b ", or "-buffering=", where mode can be "no", "line", or "full". This option uses the ANSI C function call setvbuf() to select the corresponding buffering mode. The buffering mode can be selected only once in a portable programme, and it has to be selected before the first output occurs. This means that it has to be implemented in the flesh. From schnetter at aei.mpg.de Thu Jun 22 23:21:47 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 23:21:47 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/main CommandLine.c" Message-ID: <200606230421.k5N4Llle015591@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/main In directory cvs.cct.lsu.edu:/tmp/cvs-serv15587 Modified Files: CommandLine.c Log Message: Use two dashes instead of a single dash when describing command line option. This is now the preferred format, as per the recent discussion on the developers' mailing list. Comment out a leftover non-commented part of the non-exising "x" option. Reformat the command line descriptions slightly. From schnetter at aei.mpg.de Thu Jun 22 23:47:58 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Thu, 22 Jun 2006 23:47:58 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make/known-architectures darwin" Message-ID: <200606230447.k5N4lwle015693@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make/known-architectures In directory cvs.cct.lsu.edu:/tmp/cvs-serv15689 Modified Files: darwin Log Message: Correct syntax error From tradke at aei.mpg.de Fri Jun 23 04:46:12 2006 From: tradke at aei.mpg.de (Thomas Radke) Date: Fri, 23 Jun 2006 04:46:12 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/main CommandLine.c" Message-ID: <200606230946.k5N9kCle017642@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/main In directory cvs.cct.lsu.edu:/tmp/cvs-serv17629 Modified Files: CommandLine.c Log Message: When printing the Cactus help, indicate that the '-b,--buffering' option has a mandatory argument. From jthorn at aei.mpg.de Fri Jun 23 09:17:19 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Fri, 23 Jun 2006 09:17:19 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide RunningCactus.tex" Message-ID: <200606231417.k5NEHJle019743@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv19721 Modified Files: RunningCactus.tex Log Message: description of command-line options: * describe --foo as standard long-option syntax, with -foo deprecated * also describe other syntax rules From jthorn at aei.mpg.de Fri Jun 23 09:24:20 2006 From: jthorn at aei.mpg.de (Jonathan Thornburg) Date: Fri, 23 Jun 2006 09:24:20 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide RunningCactus.tex" Message-ID: <200606231424.k5NEOKle019995@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv19942 Modified Files: RunningCactus.tex Log Message: description of command-line options * make the acceptable arguments for --buffering explicit in the table by dropping and writing [no|line|full] explicitly ==> this means that the table (A3.1) now gives a full description of the syntax, without needing to page ahead to the text description to see what can be * ditto in the text description From tradke at aei.mpg.de Fri Jun 23 09:31:45 2006 From: tradke at aei.mpg.de (Thomas Radke) Date: Fri, 23 Jun 2006 09:31:45 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src param.ccl" Message-ID: <200606231431.k5NEVjle020253@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src In directory cvs.cct.lsu.edu:/tmp/cvs-serv20231 Modified Files: param.ccl Log Message: Make Cactus::cctk_timer_output STEERABLE=RECOVER so that it can be toggled in a recovery run. From schnetter at aei.mpg.de Wed Jun 28 23:27:22 2006 From: schnetter at aei.mpg.de (Erik Schnetter) Date: Wed, 28 Jun 2006 23:27:22 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/lib/make/known-architectures darwin8.7.1" Message-ID: <200606290427.k5T4RMle017575@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/lib/make/known-architectures In directory cvs.cct.lsu.edu:/tmp/cvs-serv17571 Added Files: darwin8.7.1 Log Message: Support Darwin 8.7.1 From tradke at aei.mpg.de Thu Jun 29 11:25:58 2006 From: tradke at aei.mpg.de (Thomas Radke) Date: Thu, 29 Jun 2006 11:25:58 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/main CommandLine.c ProcessCommandLine.c" Message-ID: <200606291625.k5TGPwle020845@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/main In directory cvs.cct.lsu.edu:/tmp/cvs-serv20822/src/main Modified Files: CommandLine.c ProcessCommandLine.c Log Message: Added new command line option '--logdir ' which sets the output directory for logfiles created by the \texttt{-r} option. If the directory doesn't exist yet, it will be created by Cactus. This applies patch http://www.cactuscode.org/old/pipermail/developers/2006-June/004901.html. From tradke at aei.mpg.de Thu Jun 29 11:25:58 2006 From: tradke at aei.mpg.de (Thomas Radke) Date: Thu, 29 Jun 2006 11:25:58 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/src/include CommandLine.h" Message-ID: <200606291625.k5TGPwle020841@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/src/include In directory cvs.cct.lsu.edu:/tmp/cvs-serv20822/src/include Modified Files: CommandLine.h Log Message: Added new command line option '--logdir ' which sets the output directory for logfiles created by the \texttt{-r} option. If the directory doesn't exist yet, it will be created by Cactus. This applies patch http://www.cactuscode.org/old/pipermail/developers/2006-June/004901.html. From tradke at aei.mpg.de Thu Jun 29 11:25:58 2006 From: tradke at aei.mpg.de (Thomas Radke) Date: Thu, 29 Jun 2006 11:25:58 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide RunningCactus.tex" Message-ID: <200606291625.k5TGPwle020849@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv20822/doc/UsersGuide Modified Files: RunningCactus.tex Log Message: Added new command line option '--logdir ' which sets the output directory for logfiles created by the \texttt{-r} option. If the directory doesn't exist yet, it will be created by Cactus. This applies patch http://www.cactuscode.org/old/pipermail/developers/2006-June/004901.html. From tradke at aei.mpg.de Fri Jun 30 08:12:05 2006 From: tradke at aei.mpg.de (Thomas Radke) Date: Fri, 30 Jun 2006 08:12:05 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/UsersGuide ThornWriters.tex" Message-ID: <200606301312.k5UDC5le027086@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/UsersGuide In directory cvs.cct.lsu.edu:/tmp/cvs-serv27081/UsersGuide Modified Files: ThornWriters.tex Log Message: Added missing documentation for CCTK_SyncGroupsI(). From tradke at aei.mpg.de Fri Jun 30 08:12:08 2006 From: tradke at aei.mpg.de (Thomas Radke) Date: Fri, 30 Jun 2006 08:12:08 -0500 Subject: [Flesh-cvs] DEVELOPMENT CVS "Cactus/doc/ReferenceManual CCTKReference.tex" Message-ID: <200606301312.k5UDC8le027090@cvs.cct.lsu.edu> Update of /cactusdevcvs/Cactus/doc/ReferenceManual In directory cvs.cct.lsu.edu:/tmp/cvs-serv27081/ReferenceManual Modified Files: CCTKReference.tex Log Message: Added missing documentation for CCTK_SyncGroupsI().