|
static __DT_CLONE_TARGETS__ int | choleski_decompose_fast (const float *const restrict A, float *const restrict L, size_t n) |
|
static __DT_CLONE_TARGETS__ int | choleski_decompose_safe (const float *const restrict A, float *const restrict L, size_t n) |
|
static __DT_CLONE_TARGETS__ int | triangular_descent_fast (const float *const restrict L, const float *const restrict y, float *const restrict b, const size_t n) |
|
static __DT_CLONE_TARGETS__ int | triangular_descent_safe (const float *const restrict L, const float *const restrict y, float *const restrict b, const size_t n) |
|
static __DT_CLONE_TARGETS__ int | triangular_ascent_fast (const float *const restrict L, const float *const restrict b, float *const restrict x, const size_t n) |
|
static __DT_CLONE_TARGETS__ int | triangular_ascent_safe (const float *const restrict L, const float *const restrict b, float *const restrict x, const size_t n) |
|
static __DT_CLONE_TARGETS__ int | solve_hermitian (const float *const restrict A, float *const restrict y, const size_t n, const int checks) |
|
static __DT_CLONE_TARGETS__ int | transpose_dot_matrix (float *const restrict A, float *const restrict A_square, const size_t m, const size_t n) |
|
static __DT_CLONE_TARGETS__ int | transpose_dot_vector (float *const restrict A, float *const restrict y, float *const restrict y_square, const size_t m, const size_t n) |
|
static __DT_CLONE_TARGETS__ int | pseudo_solve (float *const restrict A, float *const restrict y, const size_t m, const size_t n, const int checks) |
|