Skip to content

Commit 614efab

Browse files
Clean up
1 parent 7fd1723 commit 614efab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/fpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
source /opt/intel/oneapi/setvars.sh
110110
printenv >> $GITHUB_ENV
111111
112-
- name: Install BLAS & LAPACK
112+
- name: Install MKL
113113
run: |
114114
sudo apt-get update
115115
sudo apt-get -y install intel-mkl

src/linalg_cholesky.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ subroutine solve_cholesky_vec(upper, a, b, err)
618618
end subroutine
619619

620620
! ------------------------------------------------------------------------------
621-
module subroutine solve_cholesky_vec_cmplx(upper, a, b, err)
621+
subroutine solve_cholesky_vec_cmplx(upper, a, b, err)
622622
!! Solves the system of Cholesky factored equations
623623
!! \(A \vec{x} = R^H R \vec{x} = \vec{b}\) or
624624
!! \(A \vec{x} = L L^H \vec{x} = \vec{b}\).

0 commit comments

Comments
 (0)