1.1 Data Layout - 2024.2 English - XD160

Vitis Libraries

Document ID
XD160
Release Date
2024-11-29
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) )