1.1 Data layout - 2023.2 English

Vitis Libraries

Release Date
2023-12-20
Version
2023.2 English

Vitis BLAS library uses row-major storage. The array index of a matrix element could be calculated by the following macro.

# define IDX2R(i,j,ld) ( ( (i)*(ld) ) + (j) )