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

BLAS95 Interface Error in MKL 10.0 Update 5 for Linux

Michael1
Beginner
462 Views

Hi,

There is a small bug in the makefile in directory /opt/intel/mkl/10.0.5.025/interfaces/blas95, which prevents all BLAS routines i[sdcz]amin and i[sdcz]amax from being included in the static archive libmkl_blas95.a, which is annoying for users who want to work with the generic interface iamax to the said routines.

The error is in line 123 of the said makefile:

It is:
$(LIBR) $(obj_path)/$(mkl_blas95_lib) $(obj_path)/[sdcz]*.$(sufobj)

It should be:
$(LIBR) $(obj_path)/$(mkl_blas95_lib) $(obj_path)/[sdczi]*.$(sufobj)

In other words the term [sdcz] has to be modified into [sdczi].

I have already posted an issue at premier.intel.com. BTW, as LAPACK (as far as I know) does not have routines starting with an "i" the LAPACK95 makefile works well.

Kind regards,
Michael

0 Kudos
1 Reply
Andrey_Bespalov
New Contributor I
462 Views

Yes, it is the error in makefile. We will fix it as soon as possible.

0 Kudos
Reply