-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update top-level aliasing, increment version
- Loading branch information
Showing
4 changed files
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters