The lensing pipeline of the future: GPU-accelerated, automatically-differentiable, highly modular. Currently under heavy development: expect interface changes and some imprecise/untested calculations.
Project description
Caustics
The lensing pipeline of the future: GPU-accelerated, automatically-differentiable, highly modular. Currently under heavy development: expect interface changes and some imprecise/untested calculations.
Installation
Simply install caustics from PyPI:
pip install caustics
Note: Python 3.9 through 3.12 are recommended; compatibility with
versions >=3.13 is currently untested.
Minimal Example
# fmt: off
import matplotlib.pyplot as plt
import caustics
import torch
cosmology = caustics.FlatLambdaCDM()
sie = caustics.SIE(cosmology=cosmology, name="lens", z_l=0.5, z_s=1.0, x0=-0.2, y0=0.0, q=0.4, phi=1.5708, Rein=1.7)
src = caustics.Sersic(name="source", x0=0.0, y0=0.0, q=0.5, phi=-0.985, n=1.3, Re=1.0, Ie=5.0)
lnslt = caustics.Sersic(name="lenslight", x0=-0.2, y0=0.0, q=0.8, phi=0.0, n=1.0, Re=1.0, Ie=10.0)
sim = caustics.LensSource(lens=sie, source=src, lens_light=lnslt, pixelscale=0.05, pixels_x=100)
plt.imshow(sim(), origin="lower")
plt.axis("off")
plt.show()
Batched simulator
sim.to_dynamic(False)
cosmology.to_static()
x = sim.build_params_tensor()
newx = x.repeat(20, 1)
newx += torch.normal(mean=0, std=0.1 * torch.ones_like(newx))
images = torch.vmap(sim)(newx)
fig, axarr = plt.subplots(4, 5, figsize=(20, 16))
for ax, im in zip(axarr.flatten(), images):
ax.imshow(im, origin="lower")
plt.show()
Automatic Differentiation
J = torch.func.jacfwd(sim)(x)
# Plot the new images
fig, axarr = plt.subplots(3, 7, figsize=(20, 9))
for i, ax in enumerate(axarr.flatten()):
ax.imshow(J[..., i], origin="lower")
plt.show()
Documentation
Please see our documentation page for more detailed information.
Contribution
We welcome contributions from collaborators and researchers interested in our work. If you have improvements, suggestions, or new findings to share, please submit an issue or pull request. Your contributions help advance our research and analysis efforts.
To get started with your development (or fork), click the "Open with GitHub Codespaces" button below to launch a fully configured development environment with all the necessary tools and extensions.
Instruction on how to contribute to this project can be found in the CONTRIBUTION.md
Some guidelines:
- Please use
isortandblackto format your code. - Use
CamelCasefor class names andsnake_casefor variable and method names. - Open up issues for bugs/missing features.
- Use pull requests for additions to the code.
- Write tests that can be run by
pytest.
Thanks to our contributors so far!
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 Distribution
Built Distribution
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 caustics-1.5.2.tar.gz.
File metadata
- Download URL: caustics-1.5.2.tar.gz
- Upload date:
- Size: 7.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
251a011df3578d3776c8fd4d70ec36cd4c56d9791b89748f737f76ce7c8eeb88
|
|
| MD5 |
48f402866b45a80d93b72a1c48faa64a
|
|
| BLAKE2b-256 |
7ac65efc5032495326d906f39b5308ca68d51bfabb5a864860f2e6f787902021
|
Provenance
The following attestation bundles were made for caustics-1.5.2.tar.gz:
Publisher:
cd.yml on Ciela-Institute/caustics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
caustics-1.5.2.tar.gz -
Subject digest:
251a011df3578d3776c8fd4d70ec36cd4c56d9791b89748f737f76ce7c8eeb88 - Sigstore transparency entry: 738183825
- Sigstore integration time:
-
Permalink:
Ciela-Institute/caustics@bde59ab8710fb57d05fb3dbcb1046a2164dd8d77 -
Branch / Tag:
refs/tags/v1.5.2 - Owner: https://github.com/Ciela-Institute
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@bde59ab8710fb57d05fb3dbcb1046a2164dd8d77 -
Trigger Event:
release
-
Statement type:
File details
Details for the file caustics-1.5.2-py3-none-any.whl.
File metadata
- Download URL: caustics-1.5.2-py3-none-any.whl
- Upload date:
- Size: 100.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
116c5b7357182328a827d1dead6700607f40451fdb7fecdab28b4a72d3ec5adf
|
|
| MD5 |
25425cef2e79374abedbd28657767a53
|
|
| BLAKE2b-256 |
df894e5c14be4f868ea529ac7faede46828b47a5f080d4b64e7fa759727db4da
|
Provenance
The following attestation bundles were made for caustics-1.5.2-py3-none-any.whl:
Publisher:
cd.yml on Ciela-Institute/caustics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
caustics-1.5.2-py3-none-any.whl -
Subject digest:
116c5b7357182328a827d1dead6700607f40451fdb7fecdab28b4a72d3ec5adf - Sigstore transparency entry: 738183833
- Sigstore integration time:
-
Permalink:
Ciela-Institute/caustics@bde59ab8710fb57d05fb3dbcb1046a2164dd8d77 -
Branch / Tag:
refs/tags/v1.5.2 - Owner: https://github.com/Ciela-Institute
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@bde59ab8710fb57d05fb3dbcb1046a2164dd8d77 -
Trigger Event:
release
-
Statement type: