Mar 30, 2018 #1 ProfLIN Civil/Environmental Joined Oct 31, 2002 Messages 1 Location US Any available free fortran compiler for parallel programming
Mar 31, 2018 #2 xwb Computer Joined Apr 29, 2005 Messages 535 Location GB 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. Upvote 0 Downvote
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.
May 1, 2018 #3 goeasyon Mechanical Joined Jun 15, 2007 Messages 55 Location US 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. https://welsim.com Upvote 0 Downvote
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. https://welsim.com
May 8, 2018 #4 xwb Computer Joined Apr 29, 2005 Messages 535 Location GB Note that MP is the parallel interface, MPI is the message passing interface, which is sometimes used for parallel processing. Upvote 0 Downvote
Note that MP is the parallel interface, MPI is the message passing interface, which is sometimes used for parallel processing.