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

problem building sygvx

wilcox__nigel
Beginner
285 Views
I am using the following call

call sygvx(K,M,d,,,,,,il,iu)

and get the following build error

Error: a null argument exisits in a subroutine CALL or in a function reference. [DSYGVX_MKL95]

if I just use call sygvx(K,M,d) then it builds fine, but I do not want to calculate all eigenvalues

What am I doing wrong?

Thanks

Nigel
0 Kudos
2 Replies
Vladimir_Koldakov__I
New Contributor III
285 Views
Hello, Nigel,

I think,
call sygvx(K,M,d,il=il,iu=iu)
could help you.

Thanks,
Vladimir

0 Kudos
wilcox__nigel
Beginner
285 Views
Hello, Nigel,

I think,
call sygvx(K,M,d,il=il,iu=iu)
could help you.

Thanks,
Vladimir


that did it

thanks
0 Kudos
Reply