Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

.optrpt

Jasmeet_S_
Beginner
2,722 Views

hi,

I am trying to compile source codes and created .optrpt but executable output file is not created. The following remark I got during MAKEFILE run:

ifort: remark #10397: optimization reports are generated in *.optrpt files in the output location

and please find the attached MAKEFILE, outer and .optrpt

Please advice me on this problem.

0 Kudos
1 Solution
Steven_L_Intel1
Employee
2,679 Views

You didn't show us the make command you used. If you just did "make" and not "make outer", then it wouldn't build. But it also occurs to me that you would not have seen the compiler remark either so I guess you did invoke that. Please show the complete output of running make.

View solution in original post

0 Kudos
22 Replies
TimP
Honored Contributor III
312 Views

Your choice of ilp64 mkl libraries requires that your.calls into mkl use 64 bit integer data types integer(int64) not default integer.  Batting this wrong is a frequent cause of the run time error you quoted.

The link warning should be no problem as long as you don't change Linux installations. 

0 Kudos
Jasmeet_S_
Beginner
312 Views

The error coming in the output file is

MATRIX DIAGONALIZATION SECTION

** On entry to DSYMV parameter number  1 had an illegal value

Here the DSYMV is  a subroutine of BLAS.

0 Kudos
Reply