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

Blacs & C++

jmcomby
Beginner
264 Views

Hi,

I'm trying to use SCALAPCK whith a c++ program. But I can't use BLACS routine. I try a "Hello World" program with only one routine's BLACS (extern "C" void BLACS_EXIT_(int &);) and add only de mkl_blacs_mpich2.lib but the linker say: unresolved external symbol!

Any Idea?

I use MKL 10.1 beta and Visual Studio 2008.

Thank you

0 Kudos
1 Reply
Gennady_F_Intel
Moderator
264 Views

Could you please change the name of this function to BLACS_EXIT. It should help, at least Dependecy Walker shows this name.

extern "C" void BLACS_EXIT(int &);

BLACS_EXIT(res);

--Gennady

0 Kudos
Reply