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

## Versioning

Boris Bonev's avatar
Boris Bonev committed
5
6
### v0.6.5

Boris Bonev's avatar
Boris Bonev committed
7
8
9
10
11
* 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
12

13
### v0.6.4
Boris Bonev's avatar
Boris Bonev committed
14
15
16
17
18

* 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
19

Boris Bonev's avatar
Boris Bonev committed
20
21
22
### v0.6.3

* Adding gradient check in unit tests
23
* Temporary work-around for NCCL contiguous issues with distributed SHT
24
* Refactored examples and documentation
Boris Bonev's avatar
Boris Bonev committed
25
* Updated SFNO example
Boris Bonev's avatar
Boris Bonev committed
26

27
28
29
### v0.6.2

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

Boris Bonev's avatar
Boris Bonev committed
33
34
### v0.6.1

Boris Bonev's avatar
Boris Bonev committed
35
* Minor bugfixes to export SFNO code
Boris Bonev's avatar
Boris Bonev committed
36
37
* Readme should now render correctly in PyPI

Boris Bonev's avatar
Boris Bonev committed
38
39
40
### v0.6.0

* Added SFNO example
41
* Added Shallow Water Equations Dataset for SFNO training
Boris Bonev's avatar
Boris Bonev committed
42
* Cleanup of the repository and added PyPI
43
* Updated Readme
Boris Bonev's avatar
Boris Bonev committed
44
45

### v0.5.0
Boris Bonev's avatar
Boris Bonev committed
46
47
48
49

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

Boris Bonev's avatar
Boris Bonev committed
50
### v0.4.0
Boris Bonev's avatar
Boris Bonev committed
51
52
53
54
55

* 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
56
### v0.3.0
Boris Bonev's avatar
Boris Bonev committed
57
58
59
60
61
62
63
64
65
66
67
68
69
70

* 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
71
### v0.2.0
Boris Bonev's avatar
Boris Bonev committed
72
73
74
75
76

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

Boris Bonev's avatar
Boris Bonev committed
77
### v0.1.0
Boris Bonev's avatar
Boris Bonev committed
78
79

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