Skip to content

Commit ed5da19

Browse files
authored
Merge pull request #423 from ntrost57/fix/6.3/mariner
add azurelinux os name for gfortran dependency (#891)
2 parents 03f7ca1 + a93b68a commit ed5da19

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Documentation for rocSPARSE is available at
2626
* 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`.
2727
* Fixed scaling in `rocsparse_Xhybmv` when only performing `y=beta*y`, for example, where `alpha==0` in `y=alpha*Ax+beta*y`.
2828
* Fixed `rocsparse_Xgemmi` failures when the y grid dimension is too large. This occured when n >= 65536.
29+
* Fixed the gfortran dependency for the `azurelinux` operating system.
2930

3031
## rocSPARSE 3.2.0 for ROCm 6.2.0
3132

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ if( BUILD_CLIENTS_SAMPLES OR BUILD_CLIENTS_TESTS OR BUILD_CLIENTS_BENCHMARKS )
213213
set(GFORTRAN_DEB "libgfortran5")
214214
elseif(CLIENTS_OS STREQUAL "sles" AND OPENMP_FOUND)
215215
set(OPENMP_RPM "libgomp1")
216-
elseif(CLIENTS_OS STREQUAL "mariner")
216+
elseif(CLIENTS_OS STREQUAL "mariner" OR CLIENTS_OS STREQUAL "azurelinux")
217217
set(GFORTRAN_RPM "gfortran")
218218
endif()
219219

0 commit comments

Comments
 (0)