1.1 Data Layout - 2024.1 English

Vitis Libraries

Release Date
2024-08-06
Version
2024.1 English

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

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