Releases: ChASE-library/ChASE
Added CI pipeline for automatic building and testing
Bug fix: GPU-timing syncronization
A problem was observed with different NVTX ranges on CPU and GPU. The problem has been solved by explicitly synchronizing the CPU with the GPU.
ChASE v1.4.0. Major release.
Introduced a new distributed GPU-build of ChASE entirely based on the NVIDIA NCCL library, which avoids the explicit data movement between host and device memory, and leads to much faster collective communications among the involved GPUs. This new release achieves between a 1.5x and 3x with respect to the traditional distributed multi-GPUs build. Now ChASE can be compiled and executed with the following distinct parallel configurations:
Distributed CPU only
Distributed multi-GPUs (traditionally based on host-device communication standards)
Distributed multi-GPUs (using NVIDIA NCCL library)
ChASE v1.3.1: minor release
Updated the estimation bound for the condition number of the matrix of filtered vectors V
. This estimate bounds from above the actual condition number of the matrix V
allowing for the dynamical selection of the Communication-Avoiding QR-decomposition (CAQR) variant within the ChASE library at run time.
ChASE v1.3.0. Major release.
This release features a number of changes in the parallel implementation and the algorithm.
- The QR factorization, which was previously done redundantly on each MPI process, is not parallelized on a 1D sub-grid of the 2D MPI cartesian grid.
- As a consequence of the additional parallelization, the number and structure of the workspace buffers has changed greatly diminishing the memory footprint of the entire library
- The use of the postApplication function has been substituted with the result that some of the communication is now hidden behind computation during the execution of the Rayleigh-Ritz kernel and the Residual kernel
- The parallel HouseholderQR algorithm has been substituted with the CholeskyQR algorithm (and its more stable variants). A mechanism to avoid failure of this algorithm has been introduced based on numerical analysis results.
- A new parallel random generator has been added to reduce the time spent initializing the computation, especially for large scale problems.
ChASE is now integrated into the ELSI library.
In this release:
- The C and Fortran interfaces have been improved
- Dependencies on Nvtx tool has been removed
- the ELSI interface has been included
ChASE v1.2.0 Release
We release the version 1.2.0 of ChASE, with new features as follows:
-
include fortran interface explicitly in the ChASE code
-
add a new chase-mpi-properties interface for block distribution, in which the distribution is provided by user, rather than use the built-in one.
-
fully compatible with Quantum Espresso
Standardized LICENSE
Fixes
- BSD3.0 license standardization
Algorithmic improvements in the Chebyshev filter
Improvements
- Integrated axpy in the call to HEMM when executing the 3-terms recurrence relation in the Chebyshev filter.
- Moved the shift of the A matrix in the 3-terms recurrent relation for the GPU build within the accelerator.
Release the first stable version of ChASE: v1.0.0
First stable version (v1.0.0) of ChASE, which supports:
- shared-memory build;
- MPI+Threads build;
- MPI+multi-GPUs build.
This version supports also both the block-distribution and block-cyclic distribution of matrix to be solved across 2D MPI grid.