This repository was archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcommand_line_args.py
133 lines (103 loc) · 5.94 KB
/
command_line_args.py
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
#!/bin/env python
import sys
import os
import argparse
from mpi4py import MPI
class ArgumentParserError(Exception): pass
class ThrowingArgumentParser(argparse.ArgumentParser):
def error(self, message):
sys.stderr.write(message+"\n")
raise ArgumentParserError(message)
def get_halo_props_args(comm):
"""
Process command line arguments for halo properties program.
Returns a dict with the argument values, or None on failure.
"""
if comm.Get_rank() == 0:
os.environ['COLUMNS'] = '80' # Can't detect terminal width when running under MPI?
parser = ThrowingArgumentParser(description='Compute halo properties in SWIFT snapshots.')
parser.add_argument('swift_filename',
help='Format string to generate snapshot filenames. Use %%(file_nr)d for the file number and %%(snap_nr)04d for the snapshot.')
parser.add_argument('scratch_dir',
help='Directory for temporary output. Can use %%(snap_nr)04d for the snapshot number.')
parser.add_argument('vr_basename',
help='Format string to generate base name of the VELOCIraptor files, excluding trailing .properties[.N] etc. Use %%(snap_nr)04d for the snapshot.')
parser.add_argument('output_file', help='Format string to generate name of the output file. Use %%(snap_nr)04d for the snapshot.')
parser.add_argument('snapshot_nr', help='Snapshot number to process', type=int)
parser.add_argument("--chunks", metavar="N", type=int, default=1,
help="Splits volume into N chunks and each compute node processes one chunk at a time")
parser.add_argument("--extra-input", metavar="FORMAT_STRING",
help="Format string to generate names of files with additional particle datasets (e.g. halo membership). Use %%(file_nr)d for the file number and %%(snap_nr)04d for the snapshot.")
parser.add_argument("--centrals-only", action="store_true", help="Only process central halos")
parser.add_argument("--dmo", action="store_true", help="Run in dark matter only mode")
parser.add_argument("--max-halos", metavar="N", nargs=1, type=int, default=(0,),
help="(For debugging) only process the first N halos in the catalogue")
parser.add_argument("--calculations", nargs="*", help="Which calculations to do (default is to do all)")
parser.add_argument("--reference-snapshot", help="Specify reference snapshot number containing all particle types", metavar="N", type=int)
parser.add_argument("--profile", metavar="LEVEL", type=int, default=0, help="Run with profiling (0=off, 1=first MPI rank only, 2=all ranks)")
parser.add_argument("--halo-ids", nargs="*", type=int, help="Only process the specified halo IDs")
parser.add_argument("--max-ranks-reading", type=int, default=32, help="Number of ranks per node reading snapshot data")
try:
args = parser.parse_args()
except ArgumentParserError as e:
args = None
else:
args = None
args = comm.bcast(args)
if args is None:
MPI.Finalize()
sys.exit(0)
return args
def get_group_membership_args(comm):
"""
Process command line arguments for halo properties program.
Returns a dict with the argument values, or None on failure.
"""
if comm.Get_rank() == 0:
os.environ['COLUMNS'] = '80' # Can't detect terminal width when running under MPI?
parser = ThrowingArgumentParser(description='Compute particle group membership in SWIFT snapshots.')
parser.add_argument('swift_filename',
help='Format string to generate snapshot filenames. Use %%(file_nr)d for the file number.')
parser.add_argument('vr_basename',
help='Base name of the VELOCIraptor files, excluding trailing .properties[.N] etc.')
parser.add_argument('output_file', help='Format string to generate output filenames. Use %%(file_nr)d for the file number.')
parser.add_argument("--update-virtual-file", type=str, help="Name of a single file virtual snapshot to write group membership to")
parser.add_argument("--output-prefix", type=str, help="Prefix for names of datasets added to virtual file")
try:
args = parser.parse_args()
except ArgumentParserError as e:
args = None
else:
args = None
args = comm.bcast(args)
if args is None:
MPI.Finalize()
sys.exit(0)
return args
def get_match_vr_halos_args(comm):
"""
Process command line arguments for halo matching program.
Returns a dict with the argument values, or None on failure.
"""
if comm.Get_rank() == 0:
os.environ['COLUMNS'] = '80' # Can't detect terminal width when running under MPI?
parser = ThrowingArgumentParser(description='Match halos between VR outputs.')
parser.add_argument('vr_basename1',
help='Base name of the first VELOCIraptor files, excluding trailing .properties[.N] etc.')
parser.add_argument('vr_basename2',
help='Base name of the second VELOCIraptor files, excluding trailing .properties[.N] etc.')
parser.add_argument('nr_particles', metavar="N", type=int, help='Number of most bound particles to use.')
parser.add_argument('output_file', help='Output file name')
parser.add_argument("--use-types", nargs="*", type=int, help="Only use the specified particle types (integer, 0-6)")
parser.add_argument("--to-field-halos-only", action="store_true", help="Only match to field halos (with hostHaloID=-1 in VR catalogue)")
try:
args = parser.parse_args()
except ArgumentParserError as e:
args = None
else:
args = None
args = comm.bcast(args)
if args is None:
MPI.Finalize()
sys.exit(0)
return args