Skip to content

Commit

Permalink
Refactor dgetrs function to use f64 instead of float64 for array types
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Apr 28, 2024
1 parent 14d3f67 commit 02da167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lapack/lapack64/dgetrs.v
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import vsl.blas
//
// a and ipiv contain the LU factorization of A and the permutation indices as
// computed by Dgetrf. ipiv is zero-indexed.
pub fn dgetrs(trans blas.Transpose, n int, nrhs int, mut a []float64, lda int, ipiv []int, mut b []float64, ldb int) {
pub fn dgetrs(trans blas.Transpose, n int, nrhs int, mut a []f64, lda int, ipiv []int, mut b []f64, ldb int) {
if trans != .no_trans && trans != .trans && trans != .conj_trans {
panic(bad_trans)
}
Expand Down

0 comments on commit 02da167

Please sign in to comment.