-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresync.th
More file actions
479 lines (448 loc) · 12.2 KB
/
presync.th
File metadata and controls
479 lines (448 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
# Reduced thornlist for PreSync
# Commented thorns have not been updated to use PreSync.
# Tests which use PUGH are not currently usable with PreSync, so
# test thorns only containing such tests are marked as when found.
#
# Please note that these thorns are believed to work *with* PreSync,
# but they are not necessarily backward compatible yet. Backward
# compatibility has been added to most of them, but it is not guaranteed.
!CRL_VERSION = 1.0
!DEFINE ROOT = PreSync
!DEFINE ARR = $ROOT/arrangements
!DEFINE COMPONENTLIST_TARGET = $ROOT/thornlists/
!DEFINE BRANCH = presync
# Cactus Flesh
!TARGET = $ROOT
!TYPE = git
!URL = https://bitbucket.org/cactuscode/cactus.git
!REPO_BRANCH = $BRANCH
!NAME = flesh
!CHECKOUT = .clang-format CONTRIBUTORS COPYRIGHT doc lib Makefile src
# Simulation Factory
!TARGET = $ROOT
!TYPE = git
!URL = https://bitbucket.org/simfactory/simfactory2.git
!REPO_PATH=$1
!NAME = simfactory2
!CHECKOUT = ./simfactory
# Example parameter files
!TARGET = $ROOT
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/einsteinexamples.git
!CHECKOUT = par
# Various Cactus utilities
!TARGET = $ROOT
!TYPE = git
!URL = https://bitbucket.org/cactuscode/utilities.git
!REPO_PATH= $1
!NAME = utils
!CHECKOUT = ./utils
# CactusBase thorns
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/cactuscode/cactusbase.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
CactusBase/CartGrid3D
CactusBase/CoordBase
CactusBase/Fortran
CactusBase/InitBase
CactusBase/IOASCII
CactusBase/IOBasic
CactusBase/IOUtil
CactusBase/SymBase
CactusBase/Time
CactusBase/Boundary
## CactusConnect thorns
#!TARGET = $ARR
#!TYPE = git
#!URL = https://bitbucket.org/cactuscode/cactusconnect.git
#!REPO_PATH= $2
##!REPO_BRANCH = $BRANCH
#!CHECKOUT =
#CactusConnect/HTTPD
#CactusConnect/HTTPDExtra
#CactusConnect/Socket
#
## CactusElliptic thorns
#!TARGET = $ARR
#!TYPE = git
#!URL = https://bitbucket.org/cactuscode/cactuselliptic.git
#!REPO_PATH= $2
##!REPO_BRANCH = $BRANCH
#!CHECKOUT = CactusElliptic/EllPETSc CactusElliptic/TATPETSc
#CactusElliptic/EllBase
##DISABLED CactusElliptic/EllPETSc
#CactusElliptic/EllSOR
#CactusElliptic/TATelliptic
##DISABLED CactusElliptic/TATPETSc
# CactusExamples thorns
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/cactuscode/cactusexamples.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT = #CactusExamples/HelloWorldCUDA CactusExamples/HelloWorldOpenCL CactusExamples/WaveToyOpenCL
#CactusExamples/DemoInterp
#CactusExamples/FleshInfo
#CactusExamples/HelloWorld
#DISABLED CactusExamples/HelloWorldCUDA
#DISABLED CactusExamples/HelloWorldOpenCL
CactusExamples/IDWaveMoL
#CactusExamples/Poisson
#CactusExamples/SampleBoundary -> All tests use Pugh
#CactusExamples/SampleIO
#CactusExamples/TimerInfo
CactusExamples/WaveMoL
#CactusExamples/WaveToy1DF77 -> All tests use Pugh
#CactusExamples/WaveToy2DF77 -> All tests use Pugh
#DISABLED CactusExamples/WaveToyOpenCL
## CactusIO thorns
#!TARGET = $ARR
#!TYPE = git
#!URL = https://bitbucket.org/cactuscode/cactusio.git
#!REPO_PATH= $2
##!REPO_BRANCH = $BRANCH
#!CHECKOUT =
#CactusIO/IOJpeg
# CactusNumerical thorns
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/cactuscode/cactusnumerical.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
#CactusNumerical/Cartoon2D
CactusNumerical/Dissipation
CactusNumerical/InterpToArray
CactusNumerical/LocalInterp
CactusNumerical/LocalInterp2
CactusNumerical/LocalReduce
CactusNumerical/MoL
#CactusNumerical/Noise
#CactusNumerical/Norms
CactusNumerical/Periodic
CactusNumerical/ReflectionSymmetry
#CactusNumerical/RotatingSymmetry180
#CactusNumerical/RotatingSymmetry90
CactusNumerical/Slab
#CactusNumerical/SlabTest -> All tests use Pugh
CactusNumerical/SpaceMask
CactusNumerical/SphericalSurface
CactusNumerical/SummationByParts
CactusNumerical/TensorTypes
#CactusNumerical/TestLocalInterp2 -> All tests use Pugh
#CactusNumerical/TestLocalReduce -> All tests use Pugh
# CactusTest thorns
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/cactuscode/cactustest.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT = #CactusTest/TestAllTypes
#DISABLED CactusTest/TestAllTypes -> contains no tests
#CactusTest/TestArrays -> All tests use Pugh
#CactusTest/TestComplex -> All tests use Pugh
#CactusTest/TestCoordinates -> contains no tests
#CactusTest/TestFortranCrayPointers -> contains no tests
#CactusTest/TestFortranDependencies1 -> contains no tests
#CactusTest/TestFortranDependencies2 -> contains no tests
#CactusTest/TestFpointerNULL -> All tests use Pugh
#CactusTest/TestFreeF90 -> contains no tests
#CactusTest/TestGlobalReduce -> All tests use Pugh
#CactusTest/TestInclude1 -> contains no tests
#CactusTest/TestInclude2 -> contains no tests
#CactusTest/TestLoop -> All tests use Pugh
#CactusTest/TestMath -> contains no tests
#CactusTest/TestMoL -> All tests use Pugh
CactusTest/TestPar
#CactusTest/TestReduce -> contains no tests
#CactusTest/TestSchedule -> contains no tests
#CactusTest/TestStrings -> contains no tests
CactusTest/TestTable
#CactusTest/TestTimers -> contains no tests
#CactusTest/TestTypes -> contains no tests
# CactusUtils thorns
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/cactuscode/cactusutils.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
#CactusUtils/Accelerator
CactusUtils/Formaline
#CactusUtils/MemSpeed
#CactusUtils/NaNCatcher
CactusUtils/NaNChecker
#CactusUtils/Nice
#CactusUtils/NoMPI
#CactusUtils/OpenCLRunTime
CactusUtils/SystemStatistics
#CactusUtils/SystemTopology
CactusUtils/TerminationTrigger
CactusUtils/TimerReport
CactusUtils/Vectors
#CactusUtils/WatchDog
# CactusWave thorns
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/cactuscode/cactuswave.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
#CactusWave/IDScalarWave
CactusWave/IDScalarWaveC
#CactusWave/IDScalarWaveCXX
#CactusWave/IDScalarWaveElliptic
#CactusWave/WaveBinarySource
CactusWave/WaveToyC
#CactusWave/WaveToyCXX
#CactusWave/WaveToyExtra
#CactusWave/WaveToyF77
#CactusWave/WaveToyF90
#CactusWave/WaveToyFreeF90
# EinsteinAnalysis
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
EinsteinAnalysis/ADMAnalysis
#EinsteinAnalysis/ADMMass
#EinsteinAnalysis/AHFinder
EinsteinAnalysis/AHFinderDirect
#EinsteinAnalysis/CalcK
#EinsteinAnalysis/EHFinder
#EinsteinAnalysis/Extract
#EinsteinAnalysis/Hydro_Analysis
#EinsteinAnalysis/Multipole
#EinsteinAnalysis/Outflow
#EinsteinAnalysis/PunctureTracker
#EinsteinAnalysis/QuasiLocalMeasures
#EinsteinAnalysis/WeylScal4
# EinsteinBase
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/einsteinbase.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
EinsteinBase/ADMBase
EinsteinBase/ADMCoupling
EinsteinBase/ADMMacros
EinsteinBase/Constants
EinsteinBase/CoordGauge
EinsteinBase/EOS_Base
EinsteinBase/HydroBase
EinsteinBase/StaticConformal
EinsteinBase/TmunuBase
# EinsteinEOS
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/einsteineos.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
#EinsteinEOS/EOS_Hybrid
EinsteinEOS/EOS_IdealFluid
EinsteinEOS/EOS_Omni
EinsteinEOS/EOS_Polytrope
# EinsteinEvolve
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/einsteinevolve.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
#EinsteinEvolve/GRHydro
#EinsteinEvolve/GRHydro_InitData
EinsteinEvolve/NewRad
# EinsteinInitialData
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
#EinsteinInitialData/DistortedBHIVP
EinsteinInitialData/Exact
#EinsteinInitialData/Hydro_InitExcision
EinsteinInitialData/IDAnalyticBH
#EinsteinInitialData/IDAxiBrillBH
#EinsteinInitialData/IDAxiOddBrillBH
#EinsteinInitialData/IDBrillData
#EinsteinInitialData/IDConstraintViolate
#EinsteinInitialData/IDFileADM
#EinsteinInitialData/IDLinearWaves
#EinsteinInitialData/Meudon_Bin_BH
#EinsteinInitialData/Meudon_Bin_NS
#EinsteinInitialData/Meudon_Mag_NS
#EinsteinInitialData/NoExcision
#EinsteinInitialData/RotatingDBHIVP
#EinsteinInitialData/TOVSolver
#EinsteinInitialData/TwoPunctures
# EinsteinUtils
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/einsteinutils.git
!REPO_PATH= $2
!CHECKOUT =
#EinsteinUtils/SetMask_SphericalSurface
EinsteinUtils/TGRtensor
# Carpet, the AMR driver
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/eschnett/carpet.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
Carpet/Carpet
Carpet/CarpetEvolutionMask
Carpet/CarpetIOASCII
Carpet/CarpetIOBasic
Carpet/CarpetIOHDF5
Carpet/CarpetIOScalar
Carpet/CarpetIntegrateTest
Carpet/CarpetInterp
Carpet/CarpetInterp2
Carpet/CarpetLib
Carpet/CarpetMask
Carpet/CarpetProlongateTest
Carpet/CarpetReduce
Carpet/CarpetRegrid
Carpet/CarpetRegrid2
Carpet/CarpetRegridTest
Carpet/CarpetSlab
Carpet/CarpetTracker
Carpet/CycleClock
Carpet/HighOrderWaveTest
Carpet/LoopControl
#Carpet/PeriodicCarpet
#Carpet/ReductionTest (requires GRHYDRO)
Carpet/ReductionTest2
Carpet/ReductionTest3
Carpet/RegridSyncTest
#Carpet/TestCarpetGridInfo -> contains no tests
#Carpet/TestLoopControl -> All tests use Pugh
Carpet/Timers
# Thorns developed at the University of Catania
#!TARGET = $ARR
#!TYPE = git
#!URL = https://bitbucket.org/eloisa/ctthorns.git
#!REPO_PATH= $2
#!REPO_BRANCH = $BRANCH
#!CHECKOUT =
#CTThorns/CT_Analytic
#CTThorns/CT_MultiLevel
!TARGET = $ARR
!TYPE = git
!URL = https://github.com/barrywardell/EinsteinExact.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT = EinsteinExact/doc EinsteinExact/m EinsteinExact/tests
EinsteinExact/EinsteinExact_Test
EinsteinExact/GaugeWave
EinsteinExact/KerrSchild
EinsteinExact/Minkowski
EinsteinExact/ModifiedSchwarzschildBL
EinsteinExact/ShiftedGaugeWave
EinsteinExact/Vaidya2
# Additional Cactus thorns
!TARGET = $ARR
!TYPE = svn
!URL = https://svn.cactuscode.org/projects/$1/$2/branches/ET_2018_02
!CHECKOUT =
ExternalLibraries/BLAS
ExternalLibraries/GSL
ExternalLibraries/HDF5
ExternalLibraries/hwloc
ExternalLibraries/LAPACK
ExternalLibraries/MPI
ExternalLibraries/zlib
# From Kranc (required e.g. by McLachlan)
!TARGET = $ARR
!TYPE = git
!URL = https://github.com/ianhinder/Kranc.git
!REPO_PATH= Auxiliary/Cactus
!CHECKOUT =
KrancNumericalTools/GenericFD
# McLachlan, the spacetime code
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/einsteintoolkit/mclachlan.git
!REPO_PATH= $2
!REPO_BRANCH = $BRANCH
!CHECKOUT =
McLachlan/ML_ADMConstraints
McLachlan/ML_ADMQuantities
McLachlan/ML_BSSN
McLachlan/ML_BSSN_Helper
McLachlan/ML_BSSN_Test
#McLachlan/ML_CCZ4
#McLachlan/ML_CCZ4_Helper
#McLachlan/ML_CCZ4_Test
#McLachlan/ML_WaveToy
##DISABLED McLachlan/ML_WaveToy_CL
#McLachlan/ML_WaveToy_Test
# Numerical
!TARGET = $ARR
!TYPE = git
!URL = https://bitbucket.org/cactuscode/numerical.git
!REPO_PATH= $2
!CHECKOUT =
Numerical/AEILocalInterp
## PITTNullCode
#!TARGET = $ARR
#!TYPE = git
#!URL = https://bitbucket.org/einsteintoolkit/pittnullcode.git
#!REPO_PATH= $2
##!REPO_BRANCH = $BRANCH
#!CHECKOUT =
#PITTNullCode/NullConstr
#PITTNullCode/NullDecomp
#PITTNullCode/NullEvolve
#PITTNullCode/NullExact
#PITTNullCode/NullGrid
#PITTNullCode/NullInterp
#PITTNullCode/NullNews
#PITTNullCode/NullPsiInt
#PITTNullCode/NullSHRExtract
#PITTNullCode/NullVars
#PITTNullCode/SphericalHarmonicDecomp
#PITTNullCode/SphericalHarmonicRecon
#PITTNullCode/SphericalHarmonicReconGen
# Various thorns from WVU
#!TARGET = $ARR
#!TYPE = git
#!URL = https://bitbucket.org/zach_etienne/wvuthorns.git
#!REPO_PATH= $2
#!REPO_BRANCH = $BRANCH
#!CHECKOUT =
#WVUThorns/IllinoisGRMHD
#WVUThorns/Convert_to_HydroBase
#WVUThorns/ID_converter_ILGRMHD
#WVUThorns/Seed_Magnetic_Fields
# Llama
#!TARGET = $ARR
#!TYPE = git
#!AUTH_URL = https://bitbucket.org/llamacode/llama.git
#!URL = https://bitbucket.org/llamacode/llama.git
#!REPO_PATH= $2
#!REPO_BRANCH = $BRANCH
#!CHECKOUT =
#Llama/ADMDerivatives
#Llama/Coordinates
#Llama/CoordinatesSymmetry
#Llama/GlobalDerivative
#Llama/Interpolate2
#Llama/LlamaWaveToy
#Llama/WaveExtractL
# Private thorns
!TARGET = $ARR
!TYPE = git
!URL = https://github.com/SamuelCupp/PreSync_TOV.git
!REPO_PATH= $2
!CHECKOUT =
PreSync_TOV/Boundary2