本帖最后由 Oxygen.Chu 于 2012-12-10 11:19 编辑
The Vivado HLS has built-in libraries for matrix operation, and all of these are have features:
1. Optimized coding
2. Optimized directive
3. Parameterized C++
4. Any data type [float | fixed | integer]
5. Any number type [real | cplx]
------------------------------------
01. add
02. sub
03. multiply
04. transpose
05. conjugate (*1)
06. LU decomposition (*2)
07. Inverse (*2)
08. DFT
09. DCT (*2)
10. Determinant (*2)
------------------------------------
(*1) - support [cplx]
(*2) - support [real]
------------------------------------
More matrix operations willl be added later.
|