1.1 Data Layout - 2024.2 English

Vitis Libraries

Release Date
2025-05-14
Version
2024.2 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) )