Skip to main content

The gravitational lensing pipeline of the future: GPU-accelerated, automatically-differentiable, highly modular.

Project description

caustics logo

ssec CI pre-commit.ci status Documentation Status PyPI version coverage status Zenodo arXiv

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()

Caustics lensed image

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()

Batched Caustics lensed images

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()

Jacobian Caustics lensed image

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.

Open in GitHub Codespaces

Instruction on how to contribute to this project can be found in the CONTRIBUTION.md

Some guidelines:

  • Please use isort and black to format your code.
  • Use CamelCase for class names and snake_case for 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!

Contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

caustics-1.7.0.tar.gz (7.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

caustics-1.7.0-py3-none-any.whl (107.1 kB view details)

Uploaded Python 3

File details

Details for the file caustics-1.7.0.tar.gz.

File metadata

  • Download URL: caustics-1.7.0.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

Hashes for caustics-1.7.0.tar.gz
Algorithm Hash digest
SHA256 fa1e1562a29e74a040a7885f0d2713c1b9a81906b68a67a73a2c3fe327da3e99
MD5 8d2cae15b68e16cafd34d11fb0e57960
BLAKE2b-256 49299c5a463bbdd6922b7ea316021a99ae301d002fd77c7a16ede1502e9a281d

See more details on using hashes here.

Provenance

The following attestation bundles were made for caustics-1.7.0.tar.gz:

Publisher: cd.yml on Ciela-Institute/caustics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caustics-1.7.0-py3-none-any.whl.

File metadata

  • Download URL: caustics-1.7.0-py3-none-any.whl
  • Upload date:
  • Size: 107.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for caustics-1.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f815752e15452439a993e22e4ccabc97b5981524051791a771f6ae9605217c6d
MD5 a540ca01204251e99d29e341b6bb04b6
BLAKE2b-256 9b6b2cad02230a526fb5e34a7556761dba47413c15850a1681dad4dc596f6220

See more details on using hashes here.

Provenance

The following attestation bundles were made for caustics-1.7.0-py3-none-any.whl:

Publisher: cd.yml on Ciela-Institute/caustics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page