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

Gfortran versus Intel Fortran

Hanna1
Beginner
2,007 Views
Hi, I have a project that I compiled utilizing gfortran on Ubuntu. But I need to use windows. Hence, I compiled it using cygwin under windows. But I found out that the program is really slow (run for the same parameters 50minutes instead of 5 minutes). Could compilation using intel fortran be a solution, please? I have heard that the compilation is optimised better… Thank you very much for any suggestion!
Best,

Hana
Labels (1)
0 Kudos
6 Replies
Arjen_Markus
Honored Contributor I
2,003 Views

It is quite possible, but it may also be a consequence of the Cygwin environment. It is very hard to predict performance accurately, especially if you do not know anything about the program ;). Therefore: try it out, I'd say. My general experience is that Intel Fortran produces faster executables on Windows, but that is not a guarantee.

Hanna1
Beginner
1,989 Views

Thank you very much for a quick reply! Is there a possibility to get a trial version of intel fortran, please? I do not know much about Intel, so I apologize for the stupid question. I do not have much money on my project and to buy the intel and find out that it does not help...

 

And maybe might it be a solution to rewrite gnu makefile into nmake that should be the equivalent of gnu make under windows? Then I could if i understood well compile under windows. without cygwin.  Or maybe both - nmake and intel or does intel have its own makefile environment, please?

 

Thank you very much. 

0 Kudos
Arjen_Markus
Honored Contributor I
1,983 Views

The current Intel Fortran oneAPI package is free of charge - you can download it and use it. It is available for various platforms. Elsewhere on the forum or via your favourite search engine you can find the proper URL for getting it all ;).

CarlSteefel
Beginner
1,948 Views

Probably the code is not optimized for some reason.  Should not be that much slower.  Once you build in cygwin, it is running "native" as far as I know.

 

oneAPI should be the answer though, since it plugs into Visual Studio (if that works) and also works on Linux and Mac.  I am having trouble integrating Visual Studio and oneAPI, but that may be something to do with the legacy "vfproj" files not loading, so I guess I can go back to building my application from scratch.  Visual Studio 2022 17.2 apparently breaks the integration with oneAPI Fortran big time...

0 Kudos
El_Zorro_Oro
Novice
1,980 Views

Hi Hanna,

 

I suggest that you download the OneAPI Basic and HPC Toolkits – they are now free unless  you want premium support.

 

Also download the Microsoft Visual Studio 2019 – there is a free version which is all you need.

 

The Fortran is based on the excellent Visual Fortran developed by Compaq (and DEC previously).

 

I have  compiled NASTRAN and it runs fine on Win 10 64 bit.

 

EL Zorro Oro

mecej4
Honored Contributor III
1,932 Views

@Hanna1 wrote:
Hi, I have a project that I compiled utilizing gfortran on Ubuntu. But I need to use windows. Hence, I compiled it using cygwin under windows. But I found out that the program is really slow (run for the same parameters 50minutes instead of 5 minutes).

 In my extensive experience, I have found Gfortran + Cygwin to be usually within +/- 30 percent of Intel in regard to run time of IFort generated code, depending on options used, nature of the program, etc. Sometimes, the Gfortran geneated code that ran twice as long compared to Ifort. I have never seen a factor of 10, as you report.

If you can make your source code available, I should like to check if the factor is something closer to 1.

0 Kudos
Reply