Changelog.md 3.54 KB
Newer Older
Boris Bonev's avatar
Boris Bonev committed
1
2
3
4
# Changelog

## Versioning

Boris Bonev's avatar
Boris Bonev committed
5
### v0.7.4
6
7

* Changing default grid in all SHT routines to `equiangular`
8
* Hotfix to the numpy version requirements
9
10
* Changing default grid in all SHT routines to `equiangular`, which makes it consistent with DISCO convolutions
* Cleaning up the SFNO example and adding new Local Spherical Neural Operator model
11
* New filter basis normalization in DISCO convolutions
12
13
* Reworked DISCO filter basis datastructure
* Support for new filter basis types
14
* Adding Morlet-like basis functions on a spherical disk
15

Boris Bonev's avatar
Boris Bonev committed
16
17
18
19
20
### v0.7.3

* Changing default grid in all SHT routines to `equiangular`
* Hotfix to the numpy version requirements

Boris Bonev's avatar
Boris Bonev committed
21
22
23
### v0.7.2

* Added resampling modules for convenience
24
* Changing behavior of distributed SHT to use `dim=-3` as channel dimension
Boris Bonev's avatar
Boris Bonev committed
25
* Fixing SHT unittests to test SHT and ISHT individually, rather than the roundtrip
26
* Changing the way custom CUDA extensions are handled
Boris Bonev's avatar
Boris Bonev committed
27

Boris Bonev's avatar
Boris Bonev committed
28
29
30
31
### v0.7.1

* Hotfix to AMP in SFNO example

Boris Bonev's avatar
Boris Bonev committed
32
33
34
35
36
### v0.7.0

* CUDA-accelerated DISCO convolutions
* Updated DISCO convolutions to support even number of collocation points across the diameter
* Distributed DISCO convolutions
37
* Fused quadrature into multiplication with the Psi tensor to lower memory footprint
Boris Bonev's avatar
Boris Bonev committed
38
39
40
* Removed DISCO convolution in the plane to focus on the sphere
* Updated unit tests which now include tests for the distributed convolutions

Boris Bonev's avatar
Boris Bonev committed
41
42
### v0.6.5

Boris Bonev's avatar
Boris Bonev committed
43
44
45
46
47
* Discrete-continuous (DISCO) convolutions on the sphere and in two dimensions
* DISCO supports isotropic and anisotropic kernel functions parameterized as hat functions
* Supports regular and transpose convolutions
* Accelerated spherical DISCO convolutions on GPU via Triton implementation
* Unittests for DISCO convolutions in `tests/test_convolution.py`
Boris Bonev's avatar
Boris Bonev committed
48

49
### v0.6.4
Boris Bonev's avatar
Boris Bonev committed
50
51
52
53
54

* Reworking distributed to allow for uneven split tensors, effectively removing the necessity of padding the transformed tensors
* Distributed SHT tests are now using unittest. Test extended to vector SHT versions
* Tests are defined in `torch_harmonics/distributed/distributed_tests.py`
* Base pytorch container version bumped up to 23.11 in Dockerfile
55

Boris Bonev's avatar
Boris Bonev committed
56
57
58
### v0.6.3

* Adding gradient check in unit tests
59
* Temporary work-around for NCCL contiguous issues with distributed SHT
60
* Refactored examples and documentation
Boris Bonev's avatar
Boris Bonev committed
61
* Updated SFNO example
Boris Bonev's avatar
Boris Bonev committed
62

63
64
65
### v0.6.2

* Adding github CI
Boris Bonev's avatar
Boris Bonev committed
66
67
* Changed SHT modules to convert dtype dynamically when computing the SHT/ISHT
* Bugfixes to fix importing examples
68

Boris Bonev's avatar
Boris Bonev committed
69
70
### v0.6.1

Boris Bonev's avatar
Boris Bonev committed
71
* Minor bugfixes to export SFNO code
Boris Bonev's avatar
Boris Bonev committed
72
73
* Readme should now render correctly in PyPI

Boris Bonev's avatar
Boris Bonev committed
74
75
76
### v0.6.0

* Added SFNO example
77
* Added Shallow Water Equations Dataset for SFNO training
Boris Bonev's avatar
Boris Bonev committed
78
* Cleanup of the repository and added PyPI
79
* Updated Readme
Boris Bonev's avatar
Boris Bonev committed
80
81

### v0.5.0
Boris Bonev's avatar
Boris Bonev committed
82
83
84
85

* Reworked distributed SHT
* Module for sampling Gaussian Random Fields on the sphere

Boris Bonev's avatar
Boris Bonev committed
86
### v0.4.0
Boris Bonev's avatar
Boris Bonev committed
87
88
89
90
91

* Computation of associated Legendre polynomials
    * changed algorithm to compute the associated Legendre polynomials for improved stability
* Improved Readme

Boris Bonev's avatar
Boris Bonev committed
92
### v0.3.0
Boris Bonev's avatar
Boris Bonev committed
93
94
95
96
97
98
99
100
101
102
103
104
105
106

* Vector Spherical Harmonic Transforms
    * projects vector-valued fields onto the vector Spherical Harmonics
    * supports computation of div and curl on the sphere
* New quadrature rules
    * Clenshaw-Curtis quadrature rule
    * Fejér quadrature rule
    * Legendre-Gauss-Lobatto quadrature
* New notebooks
    * complete with differentiable Shallow Water Solver
    * notebook on quadrature and interpolation
* Unit tests
* Refactor of the API

Boris Bonev's avatar
Boris Bonev committed
107
### v0.2.0
Boris Bonev's avatar
Boris Bonev committed
108
109
110
111
112

* Renaming from torch_sht to torch_harmonics
* Adding distributed SHT support
* New logo

Boris Bonev's avatar
Boris Bonev committed
113
### v0.1.0
Boris Bonev's avatar
Boris Bonev committed
114
115

* Single GPU forward and backward transform
116
* Minimal code example and notebook