MCPcopy Create free account
hub / github.com/numpy/numpy / getrf

Function getrf

numpy/linalg/umath_linalg.cpp:800–803  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

798}
799
800static fortran_int getrf(fortran_int *m, fortran_int *n, float a[], fortran_int
801*lda, fortran_int ipiv[], fortran_int *info) {
802 return LAPACK(sgetrf)(m, n, a, lda, ipiv, info);
803}
804static fortran_int getrf(fortran_int *m, fortran_int *n, double a[], fortran_int
805*lda, fortran_int ipiv[], fortran_int *info) {
806 return LAPACK(dgetrf)(m, n, a, lda, ipiv, info);

Callers 1

slogdet_single_elementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected