Quantcast
Channel: Intel® Fortran Compiler
Viewing all articles
Browse latest Browse all 3270

MKL Link to Fortran

$
0
0
Program Mult
       
        real a(3,3)
        real b(3,3)
        real c(3,3)
        integer i, j
       
       
        Write(*,*)'Here'
        do 100 i = 1,3
            do 200 j = 1,3
                a(i,j) = i
                b(i,j) = j
                write(*,*)a(i,j),b(i,j)
200         end do
100     end do   

        call gemm(a, b, c, 'N','N',1,1)



    end Program

I have linked to the mkl library, I have tried several variations on the gemm routine and I have tried the samples.

 

Unresolved external symbol

 

I realize it is easy but at the moment it appears hard

JMN


Viewing all articles
Browse latest Browse all 3270

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>