fitter
Master fitting and map making script.
You typically want to run the witcher
command instead of this.
deep_merge(a, b)
Based on https://gist.github.com/angstwad/bf22d1822c38a92ec0a9?permalink_comment_id=3517209
Source code in witch/fitter.py
145 146 147 148 149 150 151 152 153 154 155 156 |
|
load_config(start_cfg, cfg_path)
We want to load a config and if it has the key "base", load that as well and merge them. We only want to take things from base that are not in the original config so we merge the original into the newly loaded one.
Source code in witch/fitter.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|
print_once(*args)
Helper function to print only once when running with MPI. Only the rank 0 process will print.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args
|
Unpack[tuple[Any, ...]]
|
Arguments to pass to print. |
()
|
Source code in witch/fitter.py
32 33 34 35 36 37 38 39 40 41 42 43 44 |
|