Fast and accurate EMRI Waveforms.
Project description
few: Fast EMRI Waveforms
This package contains the highly modular framework for fast and accurate extreme mass ratio inspiral (EMRI) waveforms from arxiv.org/2104.04582 and arxiv.org/2008.06071. The waveforms in this package combine a variety of separately accessible modules to form EMRI waveforms on both CPUs and GPUs. Generally, the modules fall into four categories: trajectory, amplitudes, summation, and utilities. Please see the documentation for further information on these modules. The code can be found on Github here. The data necessary for various modules in this package will automatically download the first time it is needed. If you would like to view the data, it can be found on Zenodo. The current and all past code release zip files can also be found on Zenodo here. Please see the citation section below for information on citing FEW.
This package is a part of the Black Hole Perturbation Toolkit.
If you use all or any parts of this code, please cite arxiv.org/2104.04582 and arxiv.org/2008.06071. See the documentation to properly cite specific modules.
Getting started
To install the latest pre-compiled version of fastemriwaveforms, simply run:
# For CPU-only version
pip install --pre fastemriwaveforms
# For GPU-enabled versions with CUDA 11.Y.Z
pip install --pre fastemriwaveforms-cuda11x
# For GPU-enabled versions with CUDA 12.Y.Z
pip install --pre fastemriwaveforms-cuda12x
The --pre- flag means that you are installing a pre-release version of the project.
This flag will not be necessary once version 2.0 is officially released.
To know your CUDA version, run the tool nvidia-smi in a terminal a check the CUDA version reported in the table header:
$ nvidia-smi
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 550.54.15 Driver Version: 550.54.15 CUDA Version: 12.4 |
|-----------------------------------------+------------------------+----------------------+
...
Now, in a python file or notebook:
import few
You may check the currently available backends:
>>> for backend in ["cpu", "cuda11x", "cuda12x", "cuda", "gpu"]: print(f" - Backend '{backend}': {"un" if not few.has_backend(backend) else ""}available")
- Backend 'cpu': available
- Backend 'cuda11x': unavailable
- Backend 'cuda12x': unavailable
- Backend 'cuda': unavailable
- Backend 'gpu': unavailable
Note that the cuda backend is an alias for either cuda11x or cuda12x. If any is available, then the cuda backend is available.
Similarly, the gpu backend is (fpr now) an alias for cuda.
If you expected a backend to be available but it is not, run the following command to obtain an error message which can guide you to fix this issue:
>>> import few
>>> few.get_backend("cuda12x")
ModuleNotFoundError: No module named 'few_backend_cuda12x'
The above exception was the direct cause of the following exception:
...
few.cutils.BackendNotInstalled: The 'cuda12x' backend is not installed.
The above exception was the direct cause of the following exception:
...
few.cutils.MissingDependencies: FastEMRIWaveforms CUDA plugin is missing.
If you are using few in an environment managed using pip, run:
$ pip install fastemriwaveforms-cuda12x
The above exception was the direct cause of the following exception:
...
few.cutils.BackendAccessException: Backend 'cuda12x' is unavailable. See previous error messages.
Once FEW is working and the expected backends are selected, you may see examples notebook on how to start with this software.
Installing from sources
Prerequisites
To install this software from source, you will need:
- A C++ compiler (g++, clang++, ...)
- A Python version supported by scikit-build-core (>=3.7 as of Jan. 2025)
Some installation steps require the external library LAPACK along with its C-bindings provided by LAPACKE.
If these libraries and their header files (in particular lapacke.h) are available on your system, they will be detected
and used automatically. If they are available on a non-standard location, see below for some options to help detecting them.
Note that by default, if LAPACKE is not available on your system, the installation step will attempt to download its sources
and add them to the compilation tree. This makes the installation a bit longer but a lot easier.
If you want to enable GPU support in FEW, you will also need the NVIDIA CUDA Compiler nvcc in your path as well as
the CUDA toolkit (with, in particular, the
libraries CUDA Runtime Library, cuBLAS and cuSPARSE).
There are a set of files required for total use of this package. They will download automatically the first time they are needed. Files are generally under 10MB. However, there is a 100MB file needed for the slow waveform and the bicubic amplitude interpolation. This larger file will only download if you run either of those two modules. The files are hosted on the Black Hole Perturbation Toolkit Download Server.
Running the installation
To start the from-source installation, ensure the pre-requisite are met, clone the repository, and then simply run a pip install command:
# Clone the repository
git clone https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms.git
cd FastEMRIWaveforms
# Run the install
pip install .
Many options are available to change the installation behaviour. These can be set by adding --config-settings=cmake.define.OPTION_NAME=OPTION_VALUE to the pip command. Available options are:
FEW_LAPACKE_FETCH=ON|OFF|[AUTO]: WhetherLAPACKandLAPACKEshould be automatically fetched from internet.ON: ignore pre-installedLAPACK(E)and always fetch and compile their sourcesOFF: disableLAPACK(E)fetching and only use pre-installed library and headers (install will fail if pre-installed lib and headers are not available)AUTO(default): try to detect pre-installedLAPACK(E)and their headers. If found, use them, otherwise fetchLAPACK(E).
FEW_LAPACKE_DETECT_WITH=[CMAKE]|PKGCONFIG: HowLAPACK(E)should be detectedCMAKE:LAPACK(E)will be detected using the cmakeFindPackagecommand. If yourLAPACK(E)install provideslapacke-config.cmakein a non-standard location, add its path to theCMAKE_PREFIX_PATHenvironment variable.PKGCONFIG:LAPACK(E)will be detected usingpkg-configby searching for the fileslapack.pcandlapacke.pc. If these files are provided by yourLAPACK(E)install in a non-standard location, add their path to the environment variablePKG_CONFIG_PATHAUTO(default): attempt both CMake and PkgConfig approaches
FEW_WITH_GPU=ON|OFF|[AUTO]: Whether GPU-support must be enabledON: Forcefully enable GPU support (install will fail if GPU prerequisites are not met)OFF: Disable GPU supportAUTO(default): Check whethernvccand theCUDA Toolkitare available in environment and enable/disable GPU support accordingly.
FEW_CUDA_ARCH: List of CUDA architectures that will be targeted by the CUDA compiler using CMake CUDA_ARCHITECTURES syntax. (Default =all).
Example of custom install with specific options to forcefully enable GPU support with support for the host's GPU only (native architecture) using LAPACK fetched from internet:
pip install . \
--config-settings=cmake.define.FEW_WITH_GPU=ON \
--config-settings=cmake.define.FEW_CUDA_ARCH="native" \
--config-settings=cmake.define.FEW_LAPACKE_FETCH=ON
If you enabled GPU support (or it was automatically enabled by the AUTO mode), you will also need to install the nvidia-cuda-runtime
package corresponding to the CUDA version detected by nvidia-smi as explained in the Getting Started section above.
You will also need to manually install cupy-cuda11x or cupy-cuda12x according to your CUDA version.
Please contact the developers if the installation does not work.
Running the Tests
The tests require a few dependencies which are not installed by default. To install them, add the [testing] label to FEW package
name when installing it. E.g:
# For CPU-only version with testing enabled
pip install fastemriwaveforms[testing]
# For GPU version with CUDA 12.Y and testing enabled
pip install fastemriwaveforms-cuda12x[testing]
# For from-source install with testing enabled
git clone https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms.git
cd FastEMRIWaveforms
pip install '.[testing]'
To run the tests, open a terminal in a directory containing the sources of FEW and then run the unittest module in discover mode:
$ git clone https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms.git
$ cd FastEMRIWaveforms
$ python -m unittest discover
...
----------------------------------------------------------------------
Ran 20 tests in 71.514s
OK
Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
If you want to develop FEW and produce documentation, install few from source with the [dev] label and in editable mode:
$ git clone https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms.git
$ cd FastEMRIWaveforms
pip install -e '.[dev, testing]'
This will install necessary packages for building the documentation (sphinx, pypandoc, sphinx_rtd_theme, nbsphinx) and to run the tests.
The documentation source files are in docs/source. To compile the documentation, change to the docs directory and run make html.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors/Developers
- Michael Katz
- Lorenzo Speri
- Christian Chapman-Bird
- Alvin J. K. Chua
- Niels Warburton
- Scott Hughes
Contributors
- Philip Lynch
- Soichiro Isoyama
- Ryuichi Fujita
- Monica Rizzo
- Ollie Burke
- Maxime Pigou
License
This project is licensed under the GNU License - see the LICENSE file for details.
Citation
Please make sure to cite FEW papers and the FEW software on Zenodo. 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 file.
Acknowledgments
- This research resulting in this code was supported by National Science Foundation under grant DGE-0948017 and the Chateaubriand Fellowship from the Office for Science & Technology of the Embassy of France in the United States.
- It was also supported in part through the computational resources and staff contributions provided for the Quest/Grail high performance computing facility at Northwestern University.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastemriwaveforms_cuda11x-2.0.0rc0-cp313-cp313-manylinux_2_27_x86_64.whl.
File metadata
- Download URL: fastemriwaveforms_cuda11x-2.0.0rc0-cp313-cp313-manylinux_2_27_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
991355683f791935bbb63bab3320c89c0ea3e831dc8e8e0c727fc7406917021a
|
|
| MD5 |
ce9d13d622a4f7b537a571ec7409ae5a
|
|
| BLAKE2b-256 |
72461eed9ebe90c38e0b5e23975c939f82308b4e2bb7677b7c05b4f3cda6f528
|
File details
Details for the file fastemriwaveforms_cuda11x-2.0.0rc0-cp312-cp312-manylinux_2_27_x86_64.whl.
File metadata
- Download URL: fastemriwaveforms_cuda11x-2.0.0rc0-cp312-cp312-manylinux_2_27_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26987edf39dc743c445b99a86c303af840f99974548e20df66640ae198731a16
|
|
| MD5 |
4c5d86736cea1fc49dc94f7e572cf48b
|
|
| BLAKE2b-256 |
fd7b61ee627954aa6e42c3e469acb11db1775cf010e755b0ae39d9cb1776d966
|
File details
Details for the file fastemriwaveforms_cuda11x-2.0.0rc0-cp311-cp311-manylinux_2_27_x86_64.whl.
File metadata
- Download URL: fastemriwaveforms_cuda11x-2.0.0rc0-cp311-cp311-manylinux_2_27_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4af6c6c602fe1d6ef5a638db1dc6ccea3862c00e5d90bcbed68b531e43ad367d
|
|
| MD5 |
fe306934f71957c4b54da425954e83c1
|
|
| BLAKE2b-256 |
b327780eb2266a2ccf7648fdc01176494d9f3291e13d8957c132dccd8c559a1b
|
File details
Details for the file fastemriwaveforms_cuda11x-2.0.0rc0-cp310-cp310-manylinux_2_27_x86_64.whl.
File metadata
- Download URL: fastemriwaveforms_cuda11x-2.0.0rc0-cp310-cp310-manylinux_2_27_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7dcb8e8429d4bcd2e99178e2dd5662d20d4f9dfef62cb09718d52ee417dc49a
|
|
| MD5 |
318216bce0e480a205319c6accabe0a7
|
|
| BLAKE2b-256 |
8a7b94823dfb5dafc1b69585bc1b277d55a134da4d973141afd0b5249aed887d
|
File details
Details for the file fastemriwaveforms_cuda11x-2.0.0rc0-cp39-cp39-manylinux_2_27_x86_64.whl.
File metadata
- Download URL: fastemriwaveforms_cuda11x-2.0.0rc0-cp39-cp39-manylinux_2_27_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb5d318f60fa8a72f227615b6daad0757b2f616a70573cb30b7c29a3d35d1a36
|
|
| MD5 |
c824de1335740009c39f8df6ef9b71e8
|
|
| BLAKE2b-256 |
fda3b949c8b5011a3517ca3355be9603c08d3f63d5c92405bfa4d2fc476f39b9
|