- 21 Jul, 2025 3 commits
-
-
Andrea Paris authored
-
apaaris authored
-
apaaris authored
-
- 14 Jul, 2025 1 commit
-
-
Thorsten Kurth authored
* removing duplicate code from distributed convoloution * replacing from_numpy with as_tensor * make preprocess_psi_tensor GPU ready.
-
- 08 Jul, 2025 1 commit
-
-
Thorsten Kurth authored
* refactoring disco backend code * removed get_psi as member function and instead put it in _disco_convolution * setting seeds in tests more consistently * parametrized test classes to ensure that tests are always run on both CPU and GPU (if available) * cleaning up
-
- 26 May, 2025 1 commit
-
-
Thorsten Kurth authored
-
- 08 May, 2025 1 commit
-
-
Thorsten Kurth authored
* setting imaginary parts of DCT and nyquist frequency to zero in IRSHT variants
-
- 29 Apr, 2025 2 commits
-
-
Boris Bonev authored
This reverts commit 82881276.
-
Thorsten Kurth authored
* setting imaginary parts of DCT and nyquist frequency to zero in IRSHT variants * small fix * making einsum result contiguous * adding zero frequency to distributed sht
-
- 21 Feb, 2025 1 commit
-
-
Thorsten Kurth authored
* adding caching * replacing many numpy calls with torch calls * bumping up version number to 0.7.6
-
- 14 Jan, 2025 11 commits
-
-
Boris Bonev authored
-
Boris Bonev authored
switched psi tensor computation to double precision and implemented a fudge factor for theta_cutoff to avoid aliasing issues with the grid width
-
Thorsten Kurth authored
-
Boris Bonev authored
-
Thorsten Kurth authored
-
Boris Bonev authored
-
Boris Bonev authored
-
Boris Bonev authored
-
Boris Bonev authored
-
Boris Bonev authored
Adding FilterBasis datastructure to contain information about the type of basis used in disco convolution
-
Boris Bonev authored
-
- 12 Dec, 2024 1 commit
-
-
Boris Bonev authored
-
- 01 Oct, 2024 1 commit
-
-
Boris Bonev authored
* safeguarding all custom CUDA and C++ routines via the _cuda_extension_available flag * bumping up version number
-
- 09 Sep, 2024 1 commit
-
-
Boris Bonev authored
* changing distributeds SHT to use dim=-3 as the channel dimension for distributed transpose * Fixed formatting in tests * Adding bash script for running test suite * Replaced asserts regarding number of dimensions in tensor with checks
-
- 29 Aug, 2024 1 commit
-
-
Thorsten Kurth authored
-
- 27 Aug, 2024 1 commit
-
-
Thorsten Kurth authored
* updating amp to new torch.amp * using amp autocrats to FP32 for disco convolution kernels * implemented reduce_scatter routines but disabled those because of memory fluctuations which can cause OOM on big networks
-
- 22 Aug, 2024 1 commit
-
-
Boris Bonev authored
* missed one instance of python3 * fused multiplication of quadrature into multiplication of the Psi tensor * Added quadrature change to changelog * removing persistent quad weights tensor as it isn't needed anymore * added pretty-prenting for convolution modules * adjusting default value in convolution test
-
- 21 Aug, 2024 1 commit
-
-
Thorsten Kurth authored
* removing unneccessary contiguous statements * replacing reduce scatter with independent reduce and scatter
-
- 20 Aug, 2024 1 commit
-
-
Thorsten Kurth authored
-
- 19 Aug, 2024 1 commit
-
-
Boris Bonev authored
* adding cuda kernels for disco conv * making psi_idx an attribute * adding license headers * adding author files * reorganizing files * draft implementation * added conditional installation to setup.py * formatting changes * removing triton kernel in DISCO convolution * updated github actions * updated Readme and changelog * adding another guard for the cuda installation * renaming the cuda extension * simplifying setup.py * minor bugfix * Bbonev/cuda disco cleanup (#32) * cleanup of disco convolutions based on CUDA extension * fixing unittest * changing version to experimental 0.7.0a * initial rewrite of the distributed convolution with CUDA * fixing streams * need to fix install options * fixing streams * undid setup.py changes * reset setup.py * including CUDAStream * adjusted the precomputation of theta_cutoff. If you rely on this, your models will not be backwards-compatible. * adjusting theta_cutoff in the unittest * adding newly refactored kernels for faster compile * Tkurth/cuda disco distributed fix (#34) * attempt to make disco distributed * working distributed convolutions * fixing distributed conv * working distributed disco * removing irrelevant extra argument * using stream functions from at instead of c10 * using stream functions from at instead of c10, small fix * Bbonev/disc even filters (#35) * initial working commit with new convention of counting collocation points across the diameter instead of across the radius * fixed a bug in the computation of the even kernels * changing heuristic for computing theta_cutoff * Fixing unittest * Readability improvements * reworked normalization of filter basis functions * implemented discrete normalization of disco filters * relaxing tolerances in convolution unit test * bugfix to correctly support unequal scale factors in latitudes and longitudes * hotfix to a bug in the imports * Bbonev/distributed disco refactor (#37) * cleaned up normalization code in convolution * formatting changes in distributed convolution * Fixing default theta_cutoff to be the same in distributed and local case * fixed distributed convolution to support the same normalization as non-distributed one * readability improvements * fixed initial scale of convolution parameter weights and fixed naming of the normalization routine * Updated Readme.md * added comment in Dockerfile regarding older architectures --------- Co-authored-by:
Thorsten Kurth <tkurth@nvidia.com> Co-authored-by:
Boris Bonev <bbonev@nvidia.com>
-
- 05 Feb, 2024 1 commit
-
-
Thorsten Kurth authored
* initial implementation of distributed DISCO layer * working distributed convolution * working refactored serial conv transpose with torch kernel * working distributed conv and transposed conv when using the python kernel * working distributed convolution with torch kernel * fixed triton kernel tests * adding print statement to debug CI * adjusting tolerances in local convolution unittest --------- Co-authored-by:Boris Bonev <bbonev@nvidia.com>
-
- 14 Dec, 2023 1 commit
-
-
Boris Bonev authored
* Fixing the precomputation of the Psi matrix * moving tests to a parent folder * removing tqdm * deleting deprecated distributed tests * Moving distributed test * adapting workfolow * Added some more comments to make the code more understandable * more detailed explanation for the derivation of the rotation angles * added another comment --------- Co-authored-by:Thorsten Kurth <tkurth@nvidia.com>
-
- 07 Dec, 2023 1 commit
-
-
Thorsten Kurth authored
* working distributed fwd SHT with flexible sharding and without padding * fixing distributed sht with new logic * fixed distributed SHT and ISHT with flexible padding * working unittest for distributed fwd SHT * distributed tests converted to unit tests * bumping version number up to 0.6.4 * fixing small splitting bug in th distributed * updated changeloc, removed tests folder
-
- 23 Oct, 2023 1 commit
-
-
Boris Bonev authored
* Updated Changelog * improved readability of legendre.py * bugfix in computation of dlegpoly * Moving conversion from numpy to torch from the legendre module to the sht module * renaming to vdm in tests.py
-
- 18 Oct, 2023 1 commit
-
-
Thorsten Kurth authored
* fixing contig in distributed sht * make it normally contiguous before all to all * commented the code to be a WAR
-
- 26 Apr, 2023 1 commit
-
-
Boris Bonev authored
-
- 17 Feb, 2023 1 commit
-
-
Boris Bonev authored
-