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

declaring as pure?

tracyx
Neuer Beitragender I
2.118Aufrufe
I'm using some VML routines (for calculating things including the normal cdf, inverse normal cdf). I'd like to call these from functions/subroutines declared as pure. If I change the respective interface block to include the pure keyword, my code compiles and executes as expected. Is this safe? Thanks.
0 Kudos
3 Antworten
Chao_Y_Intel
Moderator
2.118Aufrufe

Hello,

How do you change the function declaration by adding pure? For example, for the following function, virngpoisson( method, stream, n, r, lambda )

Only the output vector, and stream may be changed after the function call. It has no other side effect. If they are taken as the output value, it is fine to define the subroutine as pure.

Thanks,
Chao

tracyx
Neuer Beitragender I
2.118Aufrufe
I haven't used the routine you mentioned, but for one I have (to compute normal cdf), I just add the following interface in my (pure) subroutine which calls this.

[fortran]interface
  pure subroutine vdcdfnorm(n,a,r)
    integer,intent(in)         :: n
    real(kind=8),intent(in)    :: a(n)
    real(kind=8),intent(out)   :: r(n)
  end subroutine
end interface[/fortran]

Is this OK?
Chao_Y_Intel
Moderator
2.118Aufrufe
Hello,
It is fine for this one. r is the only output forthis function.

Thanks,
Chao
Antworten