Skip to content

Commit

Permalink
Merge pull request #423 from ntrost57/fix/6.3/mariner
Browse files Browse the repository at this point in the history
add azurelinux os name for gfortran dependency (#891)
  • Loading branch information
vamovsik authored Nov 18, 2024
2 parents 03f7ca1 + a93b68a commit ed5da19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Documentation for rocSPARSE is available at
* Fixed an issue in `hyb2csr` where the CSR row pointer array was not being properly filled when `n=0`, `coo_nnz=0`, or `ell_nnz=0`.
* Fixed scaling in `rocsparse_Xhybmv` when only performing `y=beta*y`, for example, where `alpha==0` in `y=alpha*Ax+beta*y`.
* Fixed `rocsparse_Xgemmi` failures when the y grid dimension is too large. This occured when n >= 65536.
* Fixed the gfortran dependency for the `azurelinux` operating system.

## rocSPARSE 3.2.0 for ROCm 6.2.0

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ if( BUILD_CLIENTS_SAMPLES OR BUILD_CLIENTS_TESTS OR BUILD_CLIENTS_BENCHMARKS )
set(GFORTRAN_DEB "libgfortran5")
elseif(CLIENTS_OS STREQUAL "sles" AND OPENMP_FOUND)
set(OPENMP_RPM "libgomp1")
elseif(CLIENTS_OS STREQUAL "mariner")
elseif(CLIENTS_OS STREQUAL "mariner" OR CLIENTS_OS STREQUAL "azurelinux")
set(GFORTRAN_RPM "gfortran")
endif()

Expand Down

0 comments on commit ed5da19

Please sign in to comment.