Skip to content

Latest commit

 

History

History
480 lines (382 loc) · 18.3 KB

CHANGELOG.md

File metadata and controls

480 lines (382 loc) · 18.3 KB

Change Log for rocSOLVER

Full documentation for rocSOLVER is available at the rocSOLVER documentation.

(Unreleased) rocSOLVER

Added

Optimized

Changed

Deprecated

Removed

Fixed

Known Issues

Security

rocSOLVER 3.27.0 for ROCm 6.3.0

Added

  • 64-bit APIs for existing functions:
    • LACGV_64
    • LARF_64
    • LARFG_64
    • GEQR2_64 (with batched and strided_batched versions)
    • GEQRF_64 (with batched and strided_batched versions)
    • POTF2_64 (with batched and strided_batched versions)
    • POTRF_64 (with batched and strided_batched versions)
    • POTRS_64 (with batched and strided_batched versions)

Optimized

  • Improved performance of LARFG, LARF, and downstream functions such as GEQR2 and GEQRF on wave64 architectures
  • Improved the performance of BDSQR and GESVD
  • Improved performance of STEDC and divide and conquer Eigensolvers

Changed

  • The rocsparse library is now an optional dependency at runtime. If rocsparse is not available, rocsolver's sparse refactorization and solvers functions will return rocblas_status_not_implemented.

Fixed

  • Fixed a memory allocation issue in SYEVJ that could cause failures on clients that manage their own memory.
  • Fixed a synchronizarion issue with SYEVJ that could led to convergence failure for large matrices.
  • Fixed a convergence issue in STEIN steaming from numerical orthogonality of the initial choice of eigenvectors.
  • Fixed synchronization issue in STEIN.

Known Issues

  • A known issue in STEBZ can lead to errors in routines based on Bisection to compute eigenvalues for symmetric/hermitian matrices (e.g., SYEVX/HEEVX and SYGVX/HEGVX), as well as singular values (e.g., BDSVDX and GESVDX).

rocSOLVER 3.26.0 for ROCm 6.2.0

Added

  • 64-bit APIs for existing functions:
    • GETF2_64 (with batched and strided_batched versions)
    • GETRF_64 (with batched and strided_batched versions)
    • GETRS_64 (with batched and strided_batched versions)
  • Added gfx900 to default build targets.
  • Partial eigenvalue decomposition routines for symmetric/hermitian matrices using Divide & Conquer and Bisection:
    • SYEVDX (with batched and strided_batched versions)
    • HEEVDX (with batched and strided_batched versions)
  • Partial generalized symmetric/hermitian-definite eigenvalue decomposition using Divide & Conquer and Bisection:
    • SYGVDX (with batched and strided_batched versions)
    • HEGVDX (with batched and strided_batched versions)

Optimized

  • Improved performance of Cholesky factorization.
  • Improved performance of splitlu to extract the L and U triangular matrices from the result of sparse factorization matrix M, where M = (L - eye) + U.

Changed

  • Renamed install script arguments of the form *_dir to *-path. Arguments of the form *_dir remain functional for backwards compatibility.
  • Functions working with arrays of size n - 1 can now accept null pointers when n = 1.

Fixed

  • Fixed potential accuracy degradation in SYEVJ/HEEVJ for inputs with small eigenvalues.

rocSOLVER 3.25.0 for ROCm 6.1.0

Added

  • Eigensolver routines for symmetric/hermitian matrices using Divide & Conquer and Jacobi algorithm:
    • SYEVDJ (with batched and strided_batched versions)
    • HEEVDJ (with batched and strided_batched versions)
  • Generalized symmetric/hermitian-definite eigensolvers using Divide & Conquer and Jacobi algorithm:
    • SYGVDJ (with batched and strided_batched versions)
    • HEGVDJ (with batched and strided_batched versions)

Changed

  • Relaxed array length requirements for GESVDX with rocblas_srange_index.

Removed

  • Removed gfx803 and gfx900 from default build targets.

Fixed

  • Corrected singular vector normalization in BDSVDX and GESVDX
  • Fixed potential memory access fault in STEIN, SYEVX/HEEVX, SYGVX/HEGVX, BDSVDX and GESVDX

rocSOLVER 3.24.0 for ROCm 6.0.0

Added

  • Cholesky refactorization for sparse matrices
    • CSRRF_REFACTCHOL
  • Added rocsolver_rfinfo_mode and the ability to specify the desired refactorization routine (see rocsolver_set_rfinfo_mode).

Changed

  • CSRRF_ANALYSIS and CSRRF_SOLVE now support sparse Cholesky factorization

rocSOLVER 3.23.0 for ROCm 5.7.0

Added

  • LU factorization without pivoting for block tridiagonal matrices:
    • GEBLTTRF_NPVT now supports interleaved_batched format
  • Linear system solver without pivoting for block tridiagonal matrices:
    • GEBLTTRS_NPVT now supports interleaved_batched format

Fixed

  • Fixed stack overflow in sparse tests on Windows

Changed

  • Changed rocsolver-test sparse input data search paths to be relative to the test executable
  • Changed build scripts to default to compressed debug symbols in Debug builds

rocSOLVER 3.22.0 for ROCm 5.6.0

Added

  • LU refactorization for sparse matrices
    • CSRRF_ANALYSIS
    • CSRRF_SUMLU
    • CSRRF_SPLITLU
    • CSRRF_REFACTLU
  • Linear system solver for sparse matrices
    • CSRRF_SOLVE
  • Added type rocsolver_rfinfo for use with sparse matrix routines

Optimized

  • Improved the performance of BDSQR and GESVD when singular vectors are requested
  • Improved the performance of sorting algorithms used in different eigensolvers

Fixed

  • BDSQR and GESVD should no longer hang when the input contains NaN or Inf

rocSOLVER 3.21.0 for ROCm 5.5.0

Added

  • SVD for general matrices using Jacobi algorithm:
    • GESVDJ (with batched and strided_batched versions)
  • LU factorization without pivoting for block tridiagonal matrices:
    • GEBLTTRF_NPVT (with batched and strided_batched versions)
  • Linear system solver without pivoting for block tridiagonal matrices:
    • GEBLTTRS_NPVT (with batched and strided_batched versions)
  • Product of triangular matrices
    • LAUUM
  • Added experimental hipGraph support for rocSOLVER functions

Optimized

  • Improved the performance of SYEVJ/HEEVJ.

Changed

  • STEDC, SYEVD/HEEVD and SYGVD/HEGVD now use fully implemented Divide and Conquer approach.

Fixed

  • SYEVJ/HEEVJ should now be invariant under matrix scaling.
  • SYEVJ/HEEVJ should now properly output the eigenvalues when no sweeps are executed.
  • Fixed GETF2_NPVT and GETRF_NPVT input data initialization in tests and benchmarks.
  • Fixed rocblas missing from the dependency list of the rocsolver deb and rpm packages.

rocSOLVER 3.20.0 for ROCm 5.4.0

Added

  • Partial SVD for bidiagonal matrices:
    • BDSVDX
  • Partial SVD for general matrices:
    • GESVDX (with batched and strided_batched versions)

Changed

  • Changed ROCSOLVER_EMBED_FMT default to ON for users building directly with CMake. This matches the existing default when building with install.sh or rmake.py.

rocSOLVER 3.19.0 for ROCm 5.3.0

Added

  • Partial eigensolver routines for symmetric/hermitian matrices:
    • SYEVX (with batched and strided_batched versions)
    • HEEVX (with batched and strided_batched versions)
  • Generalized symmetric- and hermitian-definite partial eigensolvers:
    • SYGVX (with batched and strided_batched versions)
    • HEGVX (with batched and strided_batched versions)
  • Eigensolver routines for symmetric/hermitian matrices using Jacobi algorithm:
    • SYEVJ (with batched and strided_batched versions)
    • HEEVJ (with batched and strided_batched versions)
  • Generalized symmetric- and hermitian-definite eigensolvers using Jacobi algorithm:
    • SYGVJ (with batched and strided_batched versions)
    • HEGVJ (with batched and strided_batched versions)
  • Added --profile_kernels option to rocsolver-bench, which will include kernel calls in the profile log (if profile logging is enabled with --profile).

Changed

  • Changed rocsolver-bench result labels cpu_time and gpu_time to cpu_time_us and gpu_time_us, respectively.

Removed

  • Removed dependency on cblas from the rocsolver test and benchmark clients.

Fixed

  • Fixed incorrect SYGS2/HEGS2, SYGST/HEGST, SYGV/HEGV, and SYGVD/HEGVD results for batch counts larger than 32.
  • Fixed STEIN memory access fault when nev is 0.
  • Fixed incorrect STEBZ results for close eigenvalues when range = index.
  • Fixed git unsafe repository error when building with ./install.sh -cd as a non-root user.

rocSOLVER 3.18.0 for ROCm 5.2.0

Added

  • Partial eigenvalue decomposition routines:
    • STEBZ
    • STEIN
  • Package generation for test and benchmark executables on all supported OSes using CPack.
  • Added tests for multi-level logging
  • Added tests for rocsolver-bench client
  • File/Folder Reorg
    • Added File/Folder Reorg Changes with backward compatibility support using ROCM-CMAKE wrapper functions.

Fixed

  • Fixed compatibility with libfmt 8.1

rocSOLVER 3.17.0 for ROCm 5.1.0

Optimized

  • Optimized non-pivoting and batch cases of the LU factorization

Fixed

  • Fixed missing synchronization in SYTRF with rocblas_fill_lower that could potentially result in incorrect pivot values.
  • Fixed multi-level logging output to file with the ROCSOLVER_LOG_PATH, ROCSOLVER_LOG_TRACE_PATH, ROCSOLVER_LOG_BENCH_PATH and ROCSOLVER_LOG_PROFILE_PATH environment variables.
  • Fixed performance regression in the batched LU factorization of tiny matrices

rocSOLVER 3.16.0 for ROCm 5.0.0

Added

  • Symmetric matrix factorizations:
    • LASYF
    • SYTF2, SYTRF (with batched and strided_batched versions)
  • Added rocsolver_get_version_string_size to help with version string queries
  • Added rocblas_layer_mode_ex and the ability to print kernel calls in the trace and profile logs
  • Expanded batched and strided_batched sample programs.

Optimized

  • Improved general performance of LU factorization
  • Increased parallelism of specialized kernels when compiling from source, reducing build times on multi-core systems.

Changed

  • The rocsolver-test client now prints the rocSOLVER version used to run the tests, rather than the version used to build them
  • The rocsolver-bench client now prints the rocSOLVER version used in the benchmark

Fixed

  • Added missing stdint.h include to rocsolver.h

rocSOLVER 3.15.0 for ROCm 4.5.0

Added

  • Eigensolver routines for symmetric/hermitian matrices using Divide and Conquer algorithm:
    • STEDC
    • SYEVD (with batched and strided_batched versions)
    • HEEVD (with batched and strided_batched versions)
  • Generalized symmetric- and hermitian-definite eigensolvers using Divide and Conquer algorithm:
    • SYGVD (with batched and strided_batched versions)
    • HEGVD (with batched and strided_batched versions)
  • Added --mem_query option to rocsolver-bench, which will print the amount of device memory required by a function.
  • Added --profile option to rocsolver-bench, which will print profile logging results for a function.
  • RQ factorization routines:
    • GERQ2, GERQF (with batched and strided_batched versions)
  • Linear solvers for general square systems:
    • GESV (with batched and strided_batched versions)
  • Linear solvers for symmetric/hermitian positive definite systems:
    • POTRS (with batched and strided_batched versions)
    • POSV (with batched and strided_batched versions)
  • Inverse of symmetric/hermitian positive definite matrices:
    • POTRI (with batched and strided_batched versions)
  • General matrix inversion without pivoting:
    • GETRI_NPVT (with batched and strided_batched versions)
    • GETRI_NPVT_OUTOFPLACE (with batched and strided_batched versions)

Optimized

  • Improved performance of LU factorization (especially for large matrix sizes)

Changed

  • The -h option of install.sh now prints a help message, instead of doing nothing.
  • libfmt 7.1 is now a dependency
  • Raised minimum requirement for building rocSOLVER from source to CMake 3.13
  • Raised reference LAPACK version used for rocSOLVER test and benchmark clients to v3.9.1
  • Minor CMake improvements for users building from source without install.sh:
    • Removed fmt::fmt from rocsolver's public usage requirements
    • Enabled small-size optimizations by default
  • Split packaging into a runtime package ('rocsolver') and a development package ('rocsolver-devel'). The development package depends on the runtime package. To aid in the transition, the runtime package suggests the development package (except on CentOS 7). This use of the suggests feature is deprecated and will be removed in a future ROCm release.

Fixed

  • Use of the GCC / Clang __attribute__((deprecated(...))) extension is now guarded by compiler detection macros.

rocSOLVER 3.13.0 for ROCm 4.3.0

Added

  • Linear solvers for general non-square systems:
    • GELS now supports underdetermined and transposed cases
  • Inverse of triangular matrices
    • TRTRI (with batched and strided_batched versions)
  • Out-of-place general matrix inversion
    • GETRI_OUTOFPLACE (with batched and strided_batched versions)

Optimized

  • Improved general performance of matrix inversion (GETRI)

Changed

  • Argument names for the benchmark client now match argument names from the public API

Fixed

  • Fixed known issues with Thin-SVD. The problem was identified in the test specification, not in the thin-SVD implementation or the rocBLAS gemm_batched routines.
  • Benchmark client will no longer crash as a result of leading dimension or stride arguments not being provided on the command line.

rocSOLVER 3.12.0 for ROCm 4.2.0

Added

  • Multi-level logging functionality
  • Implementation of the Thin-SVD algorithm
  • Reductions of generalized symmetric- and hermitian-definite eigenproblems:
    • SYGS2, SYGST (with batched and strided_batched versions)
    • HEGS2, HEGST (with batched and strided_batched versions)
  • Symmetric and hermitian matrix eigensolvers:
    • SYEV (with batched and strided_batched versions)
    • HEEV (with batched and strided_batched versions)
  • Generalized symmetric- and hermitian-definite eigensolvers:
    • SYGV (with batched and strided_batched versions)
    • HEGV (with batched and strided_batched versions)

Changed

  • Sorting method in STERF as original quick-sort was failing for large sizes.

Removed

  • Removed hcc compiler support

Fixed

  • Fixed GELS overwriting B even when info != 0
  • Error when calling STEQR with n=1 from batched routines
  • Added roc::rocblas to the roc::rocsolver CMake usage requirements
  • Added rocblas to the dependency list of the rocsolver deb and rpm packages
  • Fixed rocblas symbol loading with dlopen and the RTLD_NOW | RTLD_LOCAL options

Known Issues

  • Thin-SVD implementation is failing in some cases (in particular m=300, n=120) due to a possible bug in the gemm_batched routines of rocBLAS.

rocSOLVER 3.11.0 for ROCm 4.1.0

Added

  • Eigensolver routines for symmetric/hermitian matrices:
    • STERF, STEQR
  • Linear solvers for general non-square systems:
    • GELS (API added with batched and strided_batched versions. Only the overdetermined non-transpose case is implemented in this release. Other cases will return rocblas_status_not_implemented status for now.)
  • Extended test coverage for functions returning info
  • Changelog file
  • Tridiagonalization routines for symmetric and hermitian matrices:
    • LATRD
    • SYTD2, SYTRD (with batched and strided_batched versions)
    • HETD2, HETRD (with batched and strided_batched versions)
  • Sample code and unit test for unified memory model/Heterogeneous Memory Management (HMM)

Optimized

  • Improved performance of LU factorization of small and mid-size matrices (n <= 2048)

Changed

  • Raised minimum requirement for building rocSOLVER from source to CMake 3.8
  • Switched to use semantic versioning for the library
  • Enabled automatic reallocation of memory workspace in rocsolver clients

Removed

  • Removed -DOPTIMAL from the roc::rocsolver CMake usage requirements. This is an internal rocSOLVER definition, and does not need to be defined by library users

Fixed

  • Fixed runtime errors in debug mode caused by incorrect kernel launch bounds
  • Fixed complex unit test bug caused by incorrect zaxpy function signature
  • Eliminated a small memory transfer that was being done on the default stream
  • Fixed GESVD right singular vectors for 1x1 matrices

rocSOLVER 3.10.0 for ROCm 3.10.0

Added

  • Orthonormal/Unitary matrix generator routines (reverse order):
    • ORG2L, UNG2L, ORGQL, UNGQL
    • ORGTR, UNGTR
  • Orthonormal/Unitary matrix multiplications routines (reverse order):
    • ORM2L, UNM2L, ORMQL, UNMQL
    • ORMTR, UNMTR

Changed

  • Major library refactoring to adopt rocBLAS memory model

Fixed

  • Returned values in parameter info of functions dealing with singularities

rocSOLVER 3.9.0 for ROCm 3.9.0

Added

  • Improved debug build mode for developers
  • QL factorization routines:
    • GEQL2, GEQLF (with batched and strided_batched versions)
  • SVD of general matrices routines:
    • GESVD (with batched and strided_batched versions)

Optimized

  • Improved performance of mid-size matrix inversion (64 < n <= 2048)

rocSOLVER 3.8.0 for ROCm 3.8.0

Added

  • Sample codes for C, C++ and FORTRAN
  • LU factorization without pivoting routines:
    • GETF2_NPVT, GETRF_NPVT (with batched and strided_batched versions)

Optimized

  • Improved performance of LU factorization of mid-size matrices (64 < n <= 2048)
  • Improved performance of small-size matrix inversion (n <= 64)

Fixed

  • Ensure the public API is C compatible

rocSOLVER 3.7.0 for ROCm 3.7.0

Added

  • LU-factorization-based matrix inverse routines:
    • GETRI (with batched and strided_batched versions)
  • SVD of bidiagonal matrices routine:
    • BDSQR

Fixed

  • Ensure congruency on the input data when executing performance tests (benchmarks)

rocSOLVER 3.6.0 for ROCm 3.6.0

Added

  • Complex precision support for all existing rocSOLVER functions
  • Bidiagonalization routines:
    • LABRD
    • GEBD2, GEBRD (with batched and strided_batched versions)
  • Integration of rocSOLVER to hipBLAS

Optimized

  • Improved performance of LU factorization of tiny matrices (n <= 64)

Changed

  • Major clients refactoring to achieve better test coverage and benchmarking

rocSOLVER 3.5.0 for ROCm 3.5.0

Added

  • Installation script and new build procedure
  • Documentation and integration with ReadTheDocs
  • Orthonormal matrix multiplication routines:
    • ORM2R, ORMQR
    • ORML2, ORMLQ
    • ORMBR

Changed

  • Switched to use all rocBLAS types and enumerations
  • Major library refactoring to achieve better integration and rocBLAS support
  • hip-clang is now default compiler

Deprecated

  • rocSOLVER types and enumerations
  • hcc compiler support