Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

fortran compiler for parallel programming.

Status
Not open for further replies.

ProfLIN

Civil/Environmental
Joined
Oct 31, 2002
Messages
1
Location
US
Any available free fortran compiler for parallel programming
 
If you are just using openmp, try gfortran.

gfortran will also work with cuda - that is, if you have an nvidia graphics card. It uses the graphics card as a parallel processor.

If you do not have an nvidia card, try gfortran with opencl.
 
Gfortran is free and can be used together with MPI or OpenMP. For the Windows application, the Intel Fortran compiler is easier to use but not free.

 
Note that MP is the parallel interface, MPI is the message passing interface, which is sometimes used for parallel processing.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top