Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29393 ディスカッション

Tools to format F90 document

sindizzy
新規コントリビューター I
2,667件の閲覧回数

I recently inherited a medium sized program based on F90. My company currently uses Intel Parallel Studio XE 2011. One thing that makes it difficult to work on the code is that the prior developer's formatting is incredibly non-standard. Indentations are random and lead to wrong interpretations.

So my question...would Intel Parallel Studio XE 2011, newer Intel studios, or any other software out there be able to format the code for better experience?

I am only looking to fix indentations and NOT the logic, var names, etc. Essentially the same function on an MS Visual Studio C# project and menu Edit>Advanced>Format Document.

Thanks

0 件の賞賛
11 返答(返信)
JohnNichols
高評価コントリビューター III
2,649件の閲覧回数

Download VS 2022. 

you may have to install Intel Fortran

Open document 

 

Edit -> advanced -> Format document works a treat for f90, can need some fixing for for files.

sindizzy
新規コントリビューター I
2,605件の閲覧回数

Dont have Intel Fortran that supports VS2022.

Steve_Lionel
名誉コントリビューター III
2,640件の閲覧回数

I think Format Document will work on the version you have (though it is ancient.)

sindizzy
新規コントリビューター I
2,601件の閲覧回数

Already tried. The Format option is not there. At least in the VS that is supported by Intel Parallel Studio XE 2011.

mecej4
名誉コントリビューター III
2,632件の閲覧回数

Another easy-to-use utility for fixing indentation is the FINDENT tool. 

sindizzy
新規コントリビューター I
2,598件の閲覧回数

Im tryin that tool but extremely difficult to set up Python. Maybe it was because im using PyCharm.

mecej4
名誉コントリビューター III
2,562件の閲覧回数

@sindizzy wrote:

   "Im tryin that tool but extremely difficult to set up Python. Maybe it was because im using PyCharm."

 

What? Findent does not use Python. You download and extract a zip file, and you have findent.exe ready to work on your Fortran source files. In a command window, if you type

     findent < old.f > new.f

the program will read the source lines in file old.f and output a polished version to file new.f. 

sindizzy
新規コントリビューター I
2,554件の閲覧回数

I see. I think we were talking about two different findents. The one I was trying to use is part of an extension to VS Code and it is written in Python: https://github.com/MFTabriz/findent

 

I will try the one on SourceForge and see what that produces. Thanks for the heads up.

Steve_Lionel
名誉コントリビューター III
2,589件の閲覧回数

You could always upgrade to the free Visual Studio 2022 and Intel Fortran Compiler (from the oneAPI HPC Toolkit - also free.) There's not likely a good reason to be stuck on a ten-year-old compiler.

sindizzy
新規コントリビューター I
2,552件の閲覧回数

I will try that. I didnt know about the oneAPI HPC Toolkit so will give that a shot.

Thanks.

sindizzy
新規コントリビューター I
2,492件の閲覧回数

I checked out Intel oneAPI and that may be our path forward. Thanks so much for the tip.

I did try the for matter within VS and it was good in some areas but failed miserable in others. I think I will try the findent on my source files and then use oneAPI for compiles.

 

Again many thanks

 

返信