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

Disable "MKL POISSON LIBRARY WARNING:"

Mikhail_Matrosov
730 Views
Hello,

I'm using s_Helmholtz_2D routine to solve my Poisson equation. I specify Neumann boundary conditions for all boundaries and receive this warning:

MKL POISSON LIBRARY WARNING:
The problem is degenerate up to rounding errors! The approximate solution
that provides the minimal Euclidean norm of the solution will be computed...

Yes, I totally understand that and all works fine. So, is there a way do disable this warning? It's just spamming output of my utility.
0 Kudos
1 Solution
Alexander_K_Intel2
730 Views
Hi,
Try to set ipar[2]=0.
With best regards,
Alexander Kalinkin

View solution in original post

0 Kudos
4 Replies
Alexander_K_Intel2
731 Views
Hi,
Try to set ipar[2]=0.
With best regards,
Alexander Kalinkin
0 Kudos
Mikhail_Matrosov
730 Views
It works! Thanks a lot!

And by the way: I wouldn't have asked such a simple question if there was convenient search on the reference, really.
0 Kudos
Alexander_K_Intel2
730 Views
You are welcome! :)
This parameter described in common parameters, chapter 13 "Partial differential equations support" of
Intel Math Kernel Library ReferenceManual.
With best regards,
Alexander Kalinkin
0 Kudos
Camilo_P_
Beginner
730 Views

The instructions given by Alexander Kalinkin are for C++ or a zero based language. For fortran you need to set ipar(3) =0.

 

0 Kudos
Reply