template <typename t_DataType, unsigned int t_ParEntries> void vec2GemStream(unsigned int p_m, unsigned int p_n, t_DataType* p_in, hls::stream<WideType<t_DataType, t_ParEntries>>& p_out)
The vec2GemStream function that moves the vector from memory to stream that matches the gem2Stream outputs.
Parameters:
t_DataType | The data type of the matrix entries. |
t_ParEntries | Number of parallelly processed entries in the matrix. |
p_m | Number of rows in a matrix. |
p_n | Number of cols in a matrix. |
p_in | Vector input. |
p_out | Output stream. |