template <typename t_DataType, unsigned int t_ParEntries> void vec2GbMatStream(unsigned int p_n, unsigned int p_kl, unsigned int p_ku, t_DataType* p_x, hls::stream<WideType<t_DataType, t_ParEntries>>& p_out)
vec2SbMatStream function that moves vector from memory to stream that matches the sbMat2Stream outputs
Parameters:
t_DataType | the data type of the matrix entries |
t_ParEntries | number of parallelly processed entries in the matrix |
p_n | number of rows/cols in a square matrix |
p_ku | number of superdiagonals |
p_kl | number of subdiagonals |
p_x | vector input |
p_out | output stream, which matches the outputs of gbMat2Stream or sbMat2Stream |