aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
Commit message (Collapse)AuthorAge
* Provide new overload function for CCTK_SyncGroupsByDirI().tradke2006-07-06
| | | | | | | | | | | Do not overload CCTK_SyncGroup() anymore by default. This patch requires the most recent changes in the flesh API to provide the new overloadable function CCTK_SyncGroupsByDirI(), as discussed in thread http://www.cactuscode.org/old/pipermail/developers/2006-June/004933.html. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@482 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Adding semicolon after fileversion macro so TAGS work properly.goodale2004-02-05
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@430 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Changing so that the number of timelevels enabled isn't necessarilygoodale2002-04-16
| | | | | | | | | | the maximum. Now overloads the CCTK_GroupStorageIncrease/Decrease functions and only rotates the levels with storage. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@375 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Private parameters to switch off overloading different driver functions.allen2001-09-16
| | | | | | | | This is to help people who have thorns providing alternative driver functionality to PUGH git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@345 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Making rcsid string a constant - PR 669.goodale2001-05-10
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@324 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Fixing compiler warningsallen2001-02-24
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@310 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Removing reduction operations from PUGH. They are now in a new thornallen2000-11-27
| | | | | | | PUGHReduce git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@285 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Changed names of registered reduction operators to betradke2000-08-01
| | | | | | | PUGH_Reduction<op>GVs() and PUGH_Reduction<op>Arrays() resp. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@257 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Added new driver overloadable function for querying array data such as lsh.allen2000-06-22
| | | | | | | Put bbox onto the pGV structure to speed up calling this new overloadable function git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@228 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Enabled PUGH to synchronize groups of arrays in one communication calltradke2000-06-14
| | | | | | | | | | | | | | rather than doing it sequentially on individual arrays. Nothing changes for the CCTK routines overloaded by PUGH. For BAM and other thorns which don't care about groups there is now a separate interface to synchronize individual arrays. Also eliminated the restriction to synchronize 1D and 3D arrays only - now it should do arbitrary dims (not yet tested). git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@222 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Changed names of PUGH functions to be uniform. Now all PUGH functionsgoodale2000-04-19
| | | | | | | | | should begin with PUGH. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@211 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Fixing rscid warnings, untabified files, combined identical case statementstradke2000-04-18
| | | | | | | for GROUP_GF and GROUP_ARRAY. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@203 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Major changes to PUGH as the dearly loved pGF is removed, and a grid functionallen2000-03-23
| | | | | | | | | | | | | | | | | | | | | | | is lowered to being simply a special case of a grid array, pGA. Grid arrays can all have different sizes, which means that now the size of a GA is moved from the GH to a structure on the GA, along with a lot of other connectivity and additional information which was formerly on the GH. If you need to care about these changes, take a look at the files in src/include/pGH.h and src/include/pGA.h, to see the new structures (I'll leave the old files pGF.h and SetupPGF.c around for a while to compare with). Also, look at a PUGH dependent file which has already been converted, such as CactusPUGHIO/IOASCII/src/Write1D.c. Warning: This commit breaks the development versions of IOHDF5 and IsoSurfacer, these will be fixed real quick. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@182 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Added a functiongoodale2000-02-02
| | | | | | | | | | | | | | | | | | | | | | | | | | pGH *pugh_pGH(cGH *GH) which takes a cGH and returns the associated pGH. Added identity_string to the pGH. These changes are for future multi-patch or multi-block changes to PUGH. When that happens the PUGH GHExtension will no longer be a pGH, but instead a structure containing a list or array of pGHs and status stuff so PUGH knows which pGH is active when its routines are called. If your thorn uses a pGH directly from the GH Extension, please change it to use the new function. Of course in principle no-one should be using the pGH anyway, alas currently a fair number of things need it 8-( Ho hum. Also removed obsolete rfrTraverse stuff completely from PUGH. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@156 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Updated PUGH for the new ScheduleTraverseGH stuff.goodale2000-01-27
| | | | | | | | | | | | Fixed a bug where SetupPGH was called with too few arguments. Moved some prototypes into pugh.h to ensure consistency between files. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@155 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Adding infrastructure for 1D and 2D GFs ... but haven't added decompositionallen1999-10-17
| | | | | | | and copying code yet git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@97 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Added array reduction operator "sum" for computing the sum.tradke1999-09-14
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@88 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Added array reduction routinestradke1999-08-20
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@86 b61c5cb5-eaca-4651-9a7a-d64986f99364
* A lot of parameter name changes, especially for IOallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@82 b61c5cb5-eaca-4651-9a7a-d64986f99364
* nclude file changesallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@81 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Changes to banner string for comopilerallen1999-07-18
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@78 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Added "WhatIsPugh" for the Pugh banner ... but I don't know how toallen1999-07-18
| | | | | | | include it in my banner string right at the moment. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@77 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Deleted overloading of CCTK_Interp routine.tradke1999-07-08
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@75 b61c5cb5-eaca-4651-9a7a-d64986f99364
* New names for Group function callsallen1999-07-08
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@74 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Joan's changes for NT...jmasso1999-06-03
| | | | | | | please try this inmediately on some other architecture. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@53 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Register pugh reduction operatorsallen1999-05-13
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@51 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Overloading CCTK_QueryGroupStorageallen1999-04-15
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@41 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Added pugh's ArrayGroupSize routineallen1999-04-14
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@38 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Started getting pugh to create groups.goodale1999-02-08
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@4 b61c5cb5-eaca-4651-9a7a-d64986f99364
* Initial check in of thorn pugh.goodale1999-02-04
Currently doesn't compile. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@2 b61c5cb5-eaca-4651-9a7a-d64986f99364