#include "cholesky_cfloat.hpp"
template < bool LowerTriangularL, int DIM, class InputType, class OutputType > void cholesky_cfloat ( hls::stream <InputType>& matrixAStrm, hls::stream <OutputType>& matrixLStrm )
cholesky_cfloat
Parameters:
| LowerTriangularL | Defines the output matrix is lower triangular or upper tirangular, When false generates upper triangle |
| DIM | Defines the input Hermitian/symmetric positive matrix dimensions |
| InputType | Input data type |
| OutputType | Output data type |
| matrixAStrm | Stream of Hermitian/symmetric positive definite input matrix |
| matrixLStrm | Stream of Lower or upper triangular output matrix, defalut is lower triangular. |