Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

row major and append/delete column?

Azua_Garcia__Giovann
218 Views
Hello,

I have a matrix previously in column major which I prefer to move now to row major since it became a hotspot and the hardcore of the computation is done along its rows and not along its columns i.e. improved locality.

However, I also need to ocasionally delete and append columns to this matrix and in row major is clearly an inconvenience. How can I append/delete columns from a matrix in row major using MKL in the fastest way? :)

Many TIA,
Best regards,
Giovanni
0 Kudos
1 Reply
Gennady_F_Intel
Moderator
218 Views
there are no similar functionality available in MKL. i believe you can do it by many ways - one of them, as an example - to use vector :: insert from STL
0 Kudos
Reply