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

Typo in the manual for FORTRAN Pack functions

Deleted_U_Intel
Employee
444 Views
I just noticed that there is a typo in the mkl reference manual for the FORTRAN Pack functions:

Fortran:
call vsPackI( n, a, inca, y )
call vsPackV( n, a, ia, y )
call vsPackM( n, a, ma, y )
call vdPackI( n, a, inca, y )
call vdPackV( n, a, ia, y )
call vdPackM( n, a, ma, y ) // is this not the C interface ??

I presume these should be:

Fortran:
call vspacki( n, a, inca, y )
call vspackv( n, a, ia, y )
call vspackm( n, a, ma, y )
call vdpacki( n, a, inca, y )
call vdpackv( n, a, ia, y )
call vdpackm( n, a, ma, y )


0 Kudos
2 Replies
TimP
Honored Contributor III
444 Views
Makes no difference, unless you have a compiler which can preserve mixed case external identifiers.
0 Kudos
Andrey_N_Intel
Employee
444 Views

Thank you for communication about the misprint in MKL Manual. We will fix the typo in the future releases of the library.

0 Kudos
Reply