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

Intel Fortran compiler issues - Intel HPC tool Kit

Developper
Beginner
577 Views

Hi

 

We have installed the Intel oneAPI Base and HPC tool Kit. We are facing below issues.

Please help us. 

 

Below is the screenshot for your reference.

 

Developper_0-1704371806665.png

 

Regards

 

0 Kudos
4 Replies
Steve_Lionel
Honored Contributor III
529 Views

You're not using Intel Fortran in that compile - it looks to me like gfortran. You're also using nonstandard syntax which Intel Fortran accepts (I format without width, extraneous parentheses on a WRITE) but gfortran does not.

0 Kudos
Developper
Beginner
475 Views

Hi 

I checked and while compiling the model, I am getting following error in Easy 5 model. Please support. 

Developper_0-1704715952378.png

 

0 Kudos
mecej4
Honored Contributor III
468 Views

Such questions and requests should be posted in a forum that is related to the software in question: Easy5 . As Steve Lionel said, the issues and questions have nothing to do with the Intel OneAPI Fortran compiler. Ifort compiles the following code without complaints, despite the extra parentheses:

 

program easy
   character(20) para_desc(100)
   real para_val(100)
   write(1,101)((trim(para_desc(i))), para_val(i))
 101 format(A,',',G)
end

 

0 Kudos
Steve_Lionel
Honored Contributor III
419 Views

More to the point - you are NOT using Intel Fortran here, but rather some other, non-Intel compiler. It's not appropriate to ask for help with this here.

0 Kudos
Reply