lisaanalysistools 1.1.20__cp39-cp39-macosx_15_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lisaanalysistools/git_version.py +7 -0
- lisaanalysistools-1.1.20.dist-info/METADATA +281 -0
- lisaanalysistools-1.1.20.dist-info/RECORD +48 -0
- lisaanalysistools-1.1.20.dist-info/WHEEL +5 -0
- lisaanalysistools-1.1.20.dist-info/licenses/LICENSE +201 -0
- lisatools/.dylibs/libgcc_s.1.1.dylib +0 -0
- lisatools/.dylibs/libstdc++.6.dylib +0 -0
- lisatools/__init__.py +90 -0
- lisatools/_version.py +34 -0
- lisatools/analysiscontainer.py +474 -0
- lisatools/cutils/Detector.cu +307 -0
- lisatools/cutils/Detector.hpp +84 -0
- lisatools/cutils/__init__.py +129 -0
- lisatools/cutils/global.hpp +28 -0
- lisatools/cutils/pycppdetector.pyx +256 -0
- lisatools/datacontainer.py +312 -0
- lisatools/detector.py +867 -0
- lisatools/diagnostic.py +990 -0
- lisatools/git_version.py.in +7 -0
- lisatools/orbit_files/equalarmlength-orbits-best-fit-to-esa.h5 +0 -0
- lisatools/orbit_files/equalarmlength-orbits.h5 +0 -0
- lisatools/orbit_files/esa-trailing-orbits.h5 +0 -0
- lisatools/sampling/__init__.py +0 -0
- lisatools/sampling/likelihood.py +882 -0
- lisatools/sampling/moves/__init__.py +0 -0
- lisatools/sampling/moves/skymodehop.py +110 -0
- lisatools/sampling/prior.py +646 -0
- lisatools/sampling/stopping.py +320 -0
- lisatools/sampling/utility.py +411 -0
- lisatools/sensitivity.py +1554 -0
- lisatools/sources/__init__.py +6 -0
- lisatools/sources/bbh/__init__.py +1 -0
- lisatools/sources/bbh/waveform.py +106 -0
- lisatools/sources/defaultresponse.py +37 -0
- lisatools/sources/emri/__init__.py +1 -0
- lisatools/sources/emri/waveform.py +79 -0
- lisatools/sources/gb/__init__.py +1 -0
- lisatools/sources/gb/waveform.py +69 -0
- lisatools/sources/utils.py +459 -0
- lisatools/sources/waveformbase.py +41 -0
- lisatools/stochastic.py +327 -0
- lisatools/utils/__init__.py +0 -0
- lisatools/utils/constants.py +54 -0
- lisatools/utils/exceptions.py +95 -0
- lisatools/utils/parallelbase.py +11 -0
- lisatools/utils/utility.py +122 -0
- lisatools_backend_cpu/git_version.py +7 -0
- lisatools_backend_cpu/pycppdetector.cpython-39-darwin.so +0 -0
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: lisaanalysistools
|
|
3
|
+
Version: 1.1.20
|
|
4
|
+
Summary: A package for LISA Data Analysis
|
|
5
|
+
Author-Email: Michael Katz <mikekatz04@gmail.com>
|
|
6
|
+
Classifier: Environment :: GPU :: NVIDIA CUDA
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Natural Language :: English
|
|
9
|
+
Classifier: Programming Language :: C++
|
|
10
|
+
Classifier: Programming Language :: Cython
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Requires-Dist: exceptiongroup; python_version < "3.11"
|
|
19
|
+
Requires-Dist: h5py<3.15
|
|
20
|
+
Requires-Dist: matplotlib
|
|
21
|
+
Requires-Dist: gpubackendtools
|
|
22
|
+
Requires-Dist: jsonschema
|
|
23
|
+
Requires-Dist: lisaconstants
|
|
24
|
+
Requires-Dist: multispline
|
|
25
|
+
Requires-Dist: numba
|
|
26
|
+
Requires-Dist: numpy
|
|
27
|
+
Requires-Dist: nvidia-ml-py
|
|
28
|
+
Requires-Dist: platformdirs
|
|
29
|
+
Requires-Dist: pydantic
|
|
30
|
+
Requires-Dist: pyyaml
|
|
31
|
+
Requires-Dist: requests
|
|
32
|
+
Requires-Dist: rich
|
|
33
|
+
Requires-Dist: scipy
|
|
34
|
+
Requires-Dist: tqdm
|
|
35
|
+
Requires-Dist: wrapt
|
|
36
|
+
Provides-Extra: doc
|
|
37
|
+
Requires-Dist: ipykernel; extra == "doc"
|
|
38
|
+
Requires-Dist: ipython; extra == "doc"
|
|
39
|
+
Requires-Dist: ipywidgets; extra == "doc"
|
|
40
|
+
Requires-Dist: myst-parser; extra == "doc"
|
|
41
|
+
Requires-Dist: nbsphinx; extra == "doc"
|
|
42
|
+
Requires-Dist: pypandoc; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinx; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinx-rtd-theme; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinx-tippy; extra == "doc"
|
|
46
|
+
Requires-Dist: corner; extra == "doc"
|
|
47
|
+
Provides-Extra: sampling
|
|
48
|
+
Requires-Dist: eryn; extra == "sampling"
|
|
49
|
+
Requires-Dist: fastlisaresponse; extra == "sampling"
|
|
50
|
+
Requires-Dist: corner; extra == "sampling"
|
|
51
|
+
Requires-Dist: chainconsumer; extra == "sampling"
|
|
52
|
+
Provides-Extra: testing
|
|
53
|
+
Requires-Dist: matplotlib; extra == "testing"
|
|
54
|
+
Requires-Dist: eryn; extra == "testing"
|
|
55
|
+
Requires-Dist: gbgpu; extra == "testing"
|
|
56
|
+
Requires-Dist: corner; extra == "testing"
|
|
57
|
+
Description-Content-Type: text/markdown
|
|
58
|
+
|
|
59
|
+
# LISA Analysis Tools
|
|
60
|
+
|
|
61
|
+
[](https://mikekatz04.github.io/LISAanalysistools)
|
|
62
|
+
[](https://doi.org/10.5281/zenodo.17138723)
|
|
63
|
+
|
|
64
|
+
LISA Analysis Tools is a package for performing LISA Data Analysis tasks, including building the LISA Global Fit.
|
|
65
|
+
|
|
66
|
+
To install the latest version of `lisaanalysistools` using `pip`, simply run:
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
# For CPU-only version
|
|
70
|
+
pip install lisaanalysistools
|
|
71
|
+
|
|
72
|
+
# For GPU-enabled versions with CUDA 11.Y.Z
|
|
73
|
+
pip install lisaanalysistools-cuda11x
|
|
74
|
+
|
|
75
|
+
# For GPU-enabled versions with CUDA 12.Y.Z
|
|
76
|
+
pip install lisaanalysistools-cuda12x
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
To know your CUDA version, run the tool `nvidia-smi` in a terminal a check the CUDA version reported in the table header:
|
|
80
|
+
|
|
81
|
+
```sh
|
|
82
|
+
$ nvidia-smi
|
|
83
|
+
+-----------------------------------------------------------------------------------------+
|
|
84
|
+
| NVIDIA-SMI 550.54.15 Driver Version: 550.54.15 CUDA Version: 12.4 |
|
|
85
|
+
|-----------------------------------------+------------------------+----------------------+
|
|
86
|
+
...
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Now, in a python file or notebook:
|
|
90
|
+
|
|
91
|
+
```py3
|
|
92
|
+
import lisatools
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
You may check the currently available backends:
|
|
96
|
+
|
|
97
|
+
```py3
|
|
98
|
+
>>> for backend in ["cpu", "cuda11x", "cuda12x", "cuda", "gpu"]:
|
|
99
|
+
... print(f" - Backend '{backend}': {"available" if lisatools.has_backend(backend) else "unavailable"}")
|
|
100
|
+
- Backend 'cpu': available
|
|
101
|
+
- Backend 'cuda11x': unavailable
|
|
102
|
+
- Backend 'cuda12x': unavailable
|
|
103
|
+
- Backend 'cuda': unavailable
|
|
104
|
+
- Backend 'gpu': unavailable
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Note that the `cuda` backend is an alias for either `cuda11x` or `cuda12x`. If any is available, then the `cuda` backend is available.
|
|
108
|
+
Similarly, the `gpu` backend is (for now) an alias for `cuda`.
|
|
109
|
+
|
|
110
|
+
If you expected a backend to be available but it is not, run the following command to obtain an error
|
|
111
|
+
message which can guide you to fix this issue:
|
|
112
|
+
|
|
113
|
+
```py3
|
|
114
|
+
>>> import lisatools
|
|
115
|
+
>>> lisatools.get_backend("cuda12x")
|
|
116
|
+
ModuleNotFoundError: No module named 'lisatools_backend_cuda12x'
|
|
117
|
+
|
|
118
|
+
The above exception was the direct cause of the following exception:
|
|
119
|
+
...
|
|
120
|
+
|
|
121
|
+
lisatools.cutils.BackendNotInstalled: The 'cuda12x' backend is not installed.
|
|
122
|
+
|
|
123
|
+
The above exception was the direct cause of the following exception:
|
|
124
|
+
...
|
|
125
|
+
|
|
126
|
+
lisatools.cutils.MissingDependencies: LISAanalysistools CUDA plugin is missing.
|
|
127
|
+
If you are using lisatools in an environment managed using pip, run:
|
|
128
|
+
$ pip install lisaanalysistools-cuda12x
|
|
129
|
+
|
|
130
|
+
The above exception was the direct cause of the following exception:
|
|
131
|
+
...
|
|
132
|
+
|
|
133
|
+
lisatools.cutils.BackendAccessException: Backend 'cuda12x' is unavailable. See previous error messages.
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Once LISA Analysis Tools is working and the expected backends are selected, check out the [examples notebooks](https://github.com/mikekatz04/LISAanalysistools/tree/master/examples/)
|
|
137
|
+
on how to start with this software.
|
|
138
|
+
|
|
139
|
+
## Installing from sources
|
|
140
|
+
|
|
141
|
+
### Prerequisites
|
|
142
|
+
|
|
143
|
+
To install this software from source, you will need:
|
|
144
|
+
|
|
145
|
+
- A C++ compiler (g++, clang++, ...)
|
|
146
|
+
- A Python version supported by [scikit-build-core](https://github.com/scikit-build/scikit-build-core) (>=3.7 as of Jan. 2025)
|
|
147
|
+
|
|
148
|
+
If you want to enable GPU support in LISA Analysis Tools, you will also need the NVIDIA CUDA Compiler `nvcc` in your path as well as
|
|
149
|
+
the [CUDA toolkit](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html) (with, in particular, the
|
|
150
|
+
libraries `CUDA Runtime Library`, `cuBLAS` and `cuSPARSE`).
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Installation instructions using conda
|
|
154
|
+
|
|
155
|
+
We recommend to install LISA Analysis Tools using conda in order to have the compilers all within an environment.
|
|
156
|
+
First clone the repo
|
|
157
|
+
|
|
158
|
+
```
|
|
159
|
+
git clone https://github.com/mikekatz04/LISAanalysistools.git
|
|
160
|
+
cd LISAanalysistools
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
Now create an environment (these instructions work for all platforms but some
|
|
164
|
+
adjustements can be needed, refer to the
|
|
165
|
+
[detailed installation documentation](https://mikekatz04.github.io/LISAanalysistools) for more information):
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
conda create -n lisatools_env -y -c conda-forge --override-channels |
|
|
169
|
+
cxx-compiler pkgconfig conda-forge/label/lapack_rc::liblapacke
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
activate the environment
|
|
173
|
+
|
|
174
|
+
```
|
|
175
|
+
conda activate lisatools_env
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
Then we can install locally for development:
|
|
179
|
+
```
|
|
180
|
+
pip install -e '.[dev, testing]'
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
### Installation instructions using conda on GPUs and linux
|
|
184
|
+
Below is a quick set of instructions to install the LISA Analysis Tools package on GPUs and linux.
|
|
185
|
+
|
|
186
|
+
```sh
|
|
187
|
+
conda create -n lisatools_env -c conda-forge lisaanalysistools-cuda12x python=3.12
|
|
188
|
+
conda activate lisatools_env
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
Test the installation device by running python
|
|
192
|
+
```python
|
|
193
|
+
import lisatools
|
|
194
|
+
lisatools.get_backend("cuda12x")
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Running the installation
|
|
198
|
+
|
|
199
|
+
To start the from-source installation, ensure the pre-requisite are met, clone
|
|
200
|
+
the repository, and then simply run a `pip install` command:
|
|
201
|
+
|
|
202
|
+
```sh
|
|
203
|
+
# Clone the repository
|
|
204
|
+
git clone https://github.com/mikekatz04/LISAanalysistools.git
|
|
205
|
+
cd LISAanalysistools
|
|
206
|
+
|
|
207
|
+
# Run the install
|
|
208
|
+
pip install .
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
If the installation does not work, first check the [detailed installation
|
|
212
|
+
documentation](https://mikekatz04.github.io/LISAanalysistools). If
|
|
213
|
+
it still does not work, please open an issue on the
|
|
214
|
+
[GitHub repository](https://github.com/mikekatz04/LISAanalysistools/issues)
|
|
215
|
+
or contact the developers through other means.
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
### Running the Tests
|
|
220
|
+
|
|
221
|
+
The tests require a few dependencies which are not installed by default. To install them, add the `[testing]` label to LISA Analysis Tools package
|
|
222
|
+
name when installing it. E.g:
|
|
223
|
+
|
|
224
|
+
```sh
|
|
225
|
+
# For CPU-only version with testing enabled
|
|
226
|
+
pip install lisaanalysistools[testing]
|
|
227
|
+
|
|
228
|
+
# For GPU version with CUDA 12.Y and testing enabled
|
|
229
|
+
pip install lisaanalysistools-cuda12x[testing]
|
|
230
|
+
|
|
231
|
+
# For from-source install with testing enabled
|
|
232
|
+
git clone https://github.com/mikekatz04/LISAanalysistools.git
|
|
233
|
+
cd LISAanalysistools
|
|
234
|
+
pip install '.[testing]'
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
To run the tests, open a terminal in a directory containing the sources of LISA Analysis Tools and then run the `unittest` module in `discover` mode:
|
|
238
|
+
|
|
239
|
+
```sh
|
|
240
|
+
$ git clone https://github.com/mikekatz04/LISAanalysistools.git
|
|
241
|
+
$ cd LISAanalysistools
|
|
242
|
+
$ python -m lisatools.tests # or "python -m unittest discover"
|
|
243
|
+
...
|
|
244
|
+
----------------------------------------------------------------------
|
|
245
|
+
Ran 20 tests in 71.514s
|
|
246
|
+
OK
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
## Contributing
|
|
250
|
+
|
|
251
|
+
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.
|
|
252
|
+
|
|
253
|
+
If you want to develop LISA Analysis Tools and produce documentation, install `lisatools` from source with the `[dev]` label and in `editable` mode:
|
|
254
|
+
|
|
255
|
+
```
|
|
256
|
+
$ git clone https://github.com/mikekatz04/LISAanalysistools.git
|
|
257
|
+
$ cd LISAanalysistools
|
|
258
|
+
pip install -e '.[dev, testing]'
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
This will install necessary packages for building the documentation (`sphinx`, `pypandoc`, `sphinx_rtd_theme`, `nbsphinx`) and to run the tests.
|
|
262
|
+
|
|
263
|
+
The documentation source files are in `docs/source`. To compile the documentation locally, change to the `docs` directory and run `make html`.
|
|
264
|
+
|
|
265
|
+
## Versioning
|
|
266
|
+
|
|
267
|
+
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/mikekatz04/LISAanalysistools/tags).
|
|
268
|
+
|
|
269
|
+
## Contributors
|
|
270
|
+
|
|
271
|
+
A (non-exhaustive) list of contributors to the LISA Analysis Tools code can be found in [CONTRIBUTORS.md](CONTRIBUTORS.md).
|
|
272
|
+
|
|
273
|
+
## License
|
|
274
|
+
|
|
275
|
+
This project is licensed under the Apache License - see the [LICENSE](LICENSE) file for details.
|
|
276
|
+
|
|
277
|
+
## Citation
|
|
278
|
+
|
|
279
|
+
Please make sure to cite LISA Analysis Tools papers and the LISA Analysis Tools software on [Zenodo](https://zenodo.org/records/17138723).
|
|
280
|
+
We provide a set of prepared references in [PAPERS.bib](PAPERS.bib). There are other papers that require citation based on the classes used. For most classes this applies to, you can find these by checking the `citation` attribute for that class. All references are detailed in the [CITATION.cff](CITATION.cff) file.
|
|
281
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
lisaanalysistools/git_version.py,sha256=rupaoMweI0CHjo635dMJ0oD594fuFzkOqsUYK01B1xw,93
|
|
2
|
+
lisatools/detector.py,sha256=b-N9jSqt2p7q0uXmUOWp_akXUWG5xZfYlyWHmEH0MJM,26790
|
|
3
|
+
lisatools/datacontainer.py,sha256=ChMXkaVCzxe9n90slN4Ncsh8Sd3lGx9PX5hyNCYXG0E,10069
|
|
4
|
+
lisatools/_version.py,sha256=3eVWGqI7sTG3H31doVGHeDGYSO6gtoUVc9NXPyOmE1s,706
|
|
5
|
+
lisatools/stochastic.py,sha256=YHtM9Ll02wyqezCJO53L34x3mt_-qs9n9abdXcEap8o,10518
|
|
6
|
+
lisatools/__init__.py,sha256=Gbzsa4gaWOfOz7_OrO2xKsJFwy9U7SAmRUnvoGgdMg8,2404
|
|
7
|
+
lisatools/git_version.py.in,sha256=yLNZEc1_MKc0uigMy8ZlNhOZvsqaIHeBd4ogM6LTGNI,141
|
|
8
|
+
lisatools/sensitivity.py,sha256=YpQhTN7UjYbmUWmIc1Sq2Ia8uR_qZuCogvTgIB4XPOo,52207
|
|
9
|
+
lisatools/diagnostic.py,sha256=WNF1fBb7VFM8W1LldGgUy91UOdvplhcC7ePCgAjlnmM,34550
|
|
10
|
+
lisatools/analysiscontainer.py,sha256=UQft6SvyDueDtuL1H1auiEzG5IEsFwRiiXf_0DHtu5U,16289
|
|
11
|
+
lisatools/cutils/global.hpp,sha256=3VPiqglTMRrIBXlEvDUJO2-CjKy_SLUXZt-9A1fH6lQ,572
|
|
12
|
+
lisatools/cutils/Detector.cu,sha256=JvAK8UCoYxgTACBhx3hi0EK9hT-HRYOxX2XozHuHI7E,7947
|
|
13
|
+
lisatools/cutils/__init__.py,sha256=XnZusb0zICP-P0ay4ILJe7SLvM5GzvgCCXd0OK--uOs,4403
|
|
14
|
+
lisatools/cutils/pycppdetector.pyx,sha256=8bB9V1nu6t1DJDWxsgBxv0ebO6Y0yb0ct3AOZ8O_C1g,7589
|
|
15
|
+
lisatools/cutils/Detector.hpp,sha256=Ic37OgP-gvEg8qouhv9aFYf7vQP98tJ_i6PGu8RI1YQ,2050
|
|
16
|
+
lisatools/sampling/utility.py,sha256=R5LKNK0A36L1PzLjCENQjDWcDjsR1oUBQGrR9PqasSA,15482
|
|
17
|
+
lisatools/sampling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
lisatools/sampling/prior.py,sha256=1K1PMStpwO9WT0qG0aotKSyoNjuehXNbzTDtlk8Q15M,21407
|
|
19
|
+
lisatools/sampling/stopping.py,sha256=Q8q7nM0wnJervhRduf2tBXZZHUVza5kJiAUAMUQXP5o,9682
|
|
20
|
+
lisatools/sampling/likelihood.py,sha256=A9a1McgjqJre8c3Bzoyxakl3onjxaE6c7zVwY2-12iI,29585
|
|
21
|
+
lisatools/sampling/moves/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
lisatools/sampling/moves/skymodehop.py,sha256=0nf72eFhFMGwi0dLJci6XZz-bIMGqco2B2_J72hQvf8,3348
|
|
23
|
+
lisatools/utils/parallelbase.py,sha256=o6SJu17eSlFrBJmPP7-Nhm08gz2Gby6UY-rWRSO5lYo,365
|
|
24
|
+
lisatools/utils/utility.py,sha256=btymtaEJ6IIfkPlugLJokvX3WNIMhGOi6ldp3-lHdYE,3267
|
|
25
|
+
lisatools/utils/constants.py,sha256=ggrNCC_6m_Mqn26y_su-NIL9PmXatOC-ebyiW5c113k,1568
|
|
26
|
+
lisatools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
lisatools/utils/exceptions.py,sha256=_z1ZL_qDO-x63mQBn4G7q7sWKqkeSVsejg7zHKFhOD0,2628
|
|
28
|
+
lisatools/orbit_files/equalarmlength-orbits.h5,sha256=4oC1KL5l2Y-argxkav76N9kCP8BuPZz-eQAJ-Nm-qQo,1285968
|
|
29
|
+
lisatools/orbit_files/esa-trailing-orbits.h5,sha256=q3r9eoXalVeBiW3nC7SMsRVrinOdcy0OlqLNxDRcrL4,1212152
|
|
30
|
+
lisatools/orbit_files/equalarmlength-orbits-best-fit-to-esa.h5,sha256=BMaMuWwqfchLMcUSr9qwJFg3N3-5u51YC3NDhzXJcsU,232224
|
|
31
|
+
lisatools/.dylibs/libstdc++.6.dylib,sha256=saEM1E8URB1JO3E8-V9RHsCHNtQ41UtW8JQEuO0WSGg,3404032
|
|
32
|
+
lisatools/.dylibs/libgcc_s.1.1.dylib,sha256=BIy-jJYqd62cjvqIph7RgdLTK8bZZU4GV58ncwUatTU,221216
|
|
33
|
+
lisatools/sources/waveformbase.py,sha256=JPLqLZd1e-6E3ySyXodO83nZGH8bVq2K_s8sF2Oy84w,845
|
|
34
|
+
lisatools/sources/__init__.py,sha256=Fm085xHQ3VpRjqaSlws0bdVefFofAxNzVZyGQQYrQic,140
|
|
35
|
+
lisatools/sources/utils.py,sha256=UhfQlBwVrOTBMas4TZ9SH96FG_WAWPa3-ePqdZfedPI,14444
|
|
36
|
+
lisatools/sources/defaultresponse.py,sha256=5MK4T1aajqN64_qbluL8qOlDRLLPcuaDSg6h8geV8QY,841
|
|
37
|
+
lisatools/sources/gb/waveform.py,sha256=tVJmH02e5K8TjIT6Nap7Lk31m3E5GtOzsJS4TwXvjeg,1813
|
|
38
|
+
lisatools/sources/gb/__init__.py,sha256=GDlLi4M4QPoEdvScIyOyhTuqk0XvFM5ymhR1EE7FYXY,36
|
|
39
|
+
lisatools/sources/bbh/waveform.py,sha256=BDLv_9_8OnTbS-jRoSyPddTD7Ca7C1_9byLPU-W_CuU,3197
|
|
40
|
+
lisatools/sources/bbh/__init__.py,sha256=M3yP4eaScZZMhOucn88iiJ2WGL6zZTQI0xUEnmw4Nu8,37
|
|
41
|
+
lisatools/sources/emri/waveform.py,sha256=M6NFZ2s00SVGL1CuyColcZw2UmE0qraGNh1dKCzN0sA,2424
|
|
42
|
+
lisatools/sources/emri/__init__.py,sha256=3W0kL4bfTtZNm-wM5t6Y0TTjtZMh4fe_qDyZ6a5rLck,38
|
|
43
|
+
lisatools_backend_cpu/pycppdetector.cpython-39-darwin.so,sha256=zFQSHvk4rD6WpeUQf757Jb1if6vQo7yzxP587j7p-5U,183984
|
|
44
|
+
lisatools_backend_cpu/git_version.py,sha256=rupaoMweI0CHjo635dMJ0oD594fuFzkOqsUYK01B1xw,93
|
|
45
|
+
lisaanalysistools-1.1.20.dist-info/RECORD,,
|
|
46
|
+
lisaanalysistools-1.1.20.dist-info/WHEEL,sha256=xbFZIoOhjIYM_NMq5NbYOdzjmFX6q5GKQKn5FMdHgqo,112
|
|
47
|
+
lisaanalysistools-1.1.20.dist-info/METADATA,sha256=gywYX4XMMxoO4WGdaKAVhQ0IJydDiSf_l7cMP8rduVE,9943
|
|
48
|
+
lisaanalysistools-1.1.20.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
Binary file
|
|
Binary file
|
lisatools/__init__.py
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"""LISA Analysis Tools."""
|
|
2
|
+
|
|
3
|
+
# ruff: noqa: E402
|
|
4
|
+
try:
|
|
5
|
+
from lisatools._version import ( # pylint: disable=E0401,E0611
|
|
6
|
+
__version__,
|
|
7
|
+
__version_tuple__,
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
except ModuleNotFoundError:
|
|
11
|
+
from importlib.metadata import PackageNotFoundError, version # pragma: no cover
|
|
12
|
+
|
|
13
|
+
try:
|
|
14
|
+
__version__ = version(__name__)
|
|
15
|
+
__version_tuple__ = tuple(__version__.split("."))
|
|
16
|
+
except PackageNotFoundError: # pragma: no cover
|
|
17
|
+
__version__ = "unknown"
|
|
18
|
+
__version_tuple__ = (0, 0, 0, "unknown")
|
|
19
|
+
finally:
|
|
20
|
+
del version, PackageNotFoundError
|
|
21
|
+
|
|
22
|
+
_is_editable: bool
|
|
23
|
+
try:
|
|
24
|
+
from . import _editable
|
|
25
|
+
|
|
26
|
+
_is_editable = True
|
|
27
|
+
del _editable
|
|
28
|
+
except (ModuleNotFoundError, ImportError):
|
|
29
|
+
_is_editable = False
|
|
30
|
+
|
|
31
|
+
from . import cutils, utils
|
|
32
|
+
|
|
33
|
+
from gpubackendtools import get_backend, has_backend, get_first_backend
|
|
34
|
+
from gpubackendtools import Globals
|
|
35
|
+
from .cutils import LISAToolsCpuBackend, LISAToolsCuda11xBackend, LISAToolsCuda12xBackend
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
add_backends = {
|
|
39
|
+
"lisatools_cpu": LISAToolsCpuBackend,
|
|
40
|
+
"lisatools_cuda11x": LISAToolsCuda11xBackend,
|
|
41
|
+
"lisatools_cuda12x": LISAToolsCuda12xBackend,
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
Globals().backends_manager.add_backends(add_backends)
|
|
45
|
+
|
|
46
|
+
Globals().backends_manager.add_backends(add_backends)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
from gpubackendtools import get_backend as _get_backend
|
|
50
|
+
from gpubackendtools import has_backend as _has_backend
|
|
51
|
+
from gpubackendtools import get_first_backend as _get_first_backend
|
|
52
|
+
from gpubackendtools.gpubackendtools import Backend
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def get_backend(backend: str) -> Backend:
|
|
56
|
+
__doc__ = _get_backend.__doc__
|
|
57
|
+
if "lisatools_" not in backend:
|
|
58
|
+
return _get_backend("lisatools_" + backend)
|
|
59
|
+
else:
|
|
60
|
+
return _get_backend(backend)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
def has_backend(backend: str) -> Backend:
|
|
64
|
+
__doc__ = _has_backend.__doc__
|
|
65
|
+
if "lisatools_" not in backend:
|
|
66
|
+
return _has_backend("lisatools_" + backend)
|
|
67
|
+
else:
|
|
68
|
+
return _has_backend(backend)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
def get_first_backend(backend: str) -> Backend:
|
|
72
|
+
__doc__ = _get_first_backend.__doc__
|
|
73
|
+
if "lisatools_" not in backend:
|
|
74
|
+
return _get_first_backend("lisatools_" + backend)
|
|
75
|
+
else:
|
|
76
|
+
return _get_first_backend(backend)
|
|
77
|
+
|
|
78
|
+
__all__ = [
|
|
79
|
+
"__version__",
|
|
80
|
+
"__version_tuple__",
|
|
81
|
+
"_is_editable",
|
|
82
|
+
"get_logger",
|
|
83
|
+
"get_config",
|
|
84
|
+
"get_config_setter",
|
|
85
|
+
"get_backend",
|
|
86
|
+
"get_file_manager",
|
|
87
|
+
"has_backend",
|
|
88
|
+
"get_backend",
|
|
89
|
+
"get_first_backend",
|
|
90
|
+
]
|
lisatools/_version.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# file generated by setuptools-scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
|
|
4
|
+
__all__ = [
|
|
5
|
+
"__version__",
|
|
6
|
+
"__version_tuple__",
|
|
7
|
+
"version",
|
|
8
|
+
"version_tuple",
|
|
9
|
+
"__commit_id__",
|
|
10
|
+
"commit_id",
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
TYPE_CHECKING = False
|
|
14
|
+
if TYPE_CHECKING:
|
|
15
|
+
from typing import Tuple
|
|
16
|
+
from typing import Union
|
|
17
|
+
|
|
18
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
+
COMMIT_ID = Union[str, None]
|
|
20
|
+
else:
|
|
21
|
+
VERSION_TUPLE = object
|
|
22
|
+
COMMIT_ID = object
|
|
23
|
+
|
|
24
|
+
version: str
|
|
25
|
+
__version__: str
|
|
26
|
+
__version_tuple__: VERSION_TUPLE
|
|
27
|
+
version_tuple: VERSION_TUPLE
|
|
28
|
+
commit_id: COMMIT_ID
|
|
29
|
+
__commit_id__: COMMIT_ID
|
|
30
|
+
|
|
31
|
+
__version__ = version = '1.1.20'
|
|
32
|
+
__version_tuple__ = version_tuple = (1, 1, 20)
|
|
33
|
+
|
|
34
|
+
__commit_id__ = commit_id = None
|