backSubstitute - 2023.2 English

Vitis Libraries

Release Date
2023-12-20
Version
2023.2 English
#include "back_substitute.hpp"
template <
    int RowsColsA,
    typename InputType,
    typename OutputType,
    typename TRAITS = backSubstituteTraits<RowsColsA, InputType, OutputType>
    >
void backSubstitute (
    hls::stream <InputType>& matrixAStrm,
    hls::stream <OutputType>& matrixBStrm,
    int& is_singular
    )

backSubstitute

Parameters:

RowsColsA Row and column dimensions
InputType Input data type
OutputType Output data type
TRIATS Traits class
matrixAStrm Stream of Input matrix
matrixBStrm Stream of Output matrix.
is_singular Indicates the diagonal of B contains zeros.