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

MKL interval_arithmic module usage

g_f_thomas
Beginner
330 Views

I'm using interval_arithmetic as in

program main

use interval_arithmetic

implicit none

type

(D_INTERVAL) :: A, sumA

!Initialization stuff here

sumA = dinterval(zero, zero)

doj = 1, lda

do i = 1, lda

sumA = sumA + ABS(A(i,j))

enddo

enddo

Why is ABS, which is interfaced in the interval_arithmetic module, not recognized as such? The linker issues:

error LNK2019: unresolved external symbol _DI_ABS referenced in function _MAIN__

Thanks,

Gerry

0 Kudos
0 Replies
Reply