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

Function call_potrf

numpy/linalg/umath_linalg.cpp:1859–1867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1857
1858
1859static inline fortran_int
1860call_potrf(POTR_PARAMS_t<fortran_real> *params)
1861{
1862 fortran_int rv;
1863 LAPACK(spotrf)(&params->UPLO,
1864 &params->N, params->A, &params->LDA,
1865 &rv);
1866 return rv;
1867}
1868
1869static inline fortran_int
1870call_potrf(POTR_PARAMS_t<fortran_doublereal> *params)

Callers 1

choleskyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected