Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

6.4.5 vsip_dcholsol_p - Solve Linear Systems Using Cholesky Decomposition

int vsip_cholsol_f(const vsip_chol_f *chold, const vsip_mview_f *a); 
int vsip_ccholsol_f(const vsip_cchol_f *chold, const vsip_cmview_f *a);
Description

This function solves linear systems of equations using a previously computed Cholesky decomposition. It solves the system AX  =B where A is a symmetric positive definite matrix that has been decomposed using vsip_dchold_p .

The function uses the Cholesky decomposition       T
A = LL (or      T
A =U  U,      H
A =U  U) to efficiently solve the linear system by performing forward and backward substitution on the triangular factors.

Parameters
Return Value
Notes