Skip to content

Commit

Permalink
update top-level aliasing, increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmoMatt committed Apr 9, 2024
1 parent 50622a4 commit 54e65e0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .pip_readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ wavelet transforms on the sphere and rotation group (for both real and
complex signals), with support for adjoints where needed, and comes with
a variety of different optimisations (e.g. precompute or not,
multi-resolution algorithms) that one may select depending on available
resources and desired angular resolution $L$. `S2WAV` is a sister package of
resources and desired angular resolution L. `S2WAV` is a sister package of
`S2FFT <https://github.com/astro-informatics/s2fft>`_, both of which are part of the `SAX`
project, which aims to provide comprehensive support for differentiable transforms on the
sphere and rotation group.
Expand All @@ -38,7 +38,7 @@ is limited to CPU.
Documentation
=============

Read the full documentation <here `astro-informatics.github.io/s2wav/>`_.
Read the full documentation `here <astro-informatics.github.io/s2wav/>`_.

Attribution
===========
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
author = "Matthew Price, Jason McEwen, Jessica Whitney, Alicja Polanska"

# The short X.Y version
version = "0.0.1"
version = "1.0.1"
# The full version, including alpha/beta/rc tags
release = "0.0.1"
release = "1.0.1"


# -- General configuration ---------------------------------------------------
Expand Down
29 changes: 15 additions & 14 deletions s2wav/__init__.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# ~~ Core ~~
from . import filters
from . import samples
from . import transforms

# # ~~ Aliases ~~
# ~~ Aliases ~~

# # JAX recursive transforms
# from .transforms.wavelet import analysis, synthesis, flm_to_analysis
# JAX recursive transforms
from .transforms.wavelet import analysis, synthesis, flm_to_analysis

# # Base transforms
# from .transforms.base import analysis as analysis_base
# from .transforms.base import synthesis as synthesis_base
# Base transforms
from .transforms.base import analysis as analysis_base
from .transforms.base import synthesis as synthesis_base

# # JAX precompute transforms
# from .transforms.wavelet_precompute import analysis as analysis_precomp_jax
# from .transforms.wavelet_precompute import synthesis as synthesis_precomp_jax
# JAX precompute transforms
from .transforms.wavelet_precompute import analysis as analysis_precomp_jax
from .transforms.wavelet_precompute import synthesis as synthesis_precomp_jax

# # PyTorch precompute transforms
# from .transforms.wavelet_precompute_torch import analysis as analysis_precomp_torch
# from .transforms.wavelet_precompute_torch import synthesis as synthesis_precomp_torch
# PyTorch precompute transforms
from .transforms.wavelet_precompute_torch import analysis as analysis_precomp_torch
from .transforms.wavelet_precompute_torch import synthesis as synthesis_precomp_torch

# # Martix precompute functions
# from .transforms import construct
# Martix precompute functions
from .transforms import construct
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"Intended Audience :: Science/Research",
],
name="s2wav",
version="1.0.0",
version="1.0.1",
url="https://github.com/astro-informatics/s2wav",
author="Authors & Contributors",
license="GNU General Public License v3 (GPLv3)",
Expand Down

0 comments on commit 54e65e0

Please sign in to comment.