Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.19 KB

setup.md

File metadata and controls

37 lines (25 loc) · 1.19 KB
title
Setup

To follow this tutorial all that you need is a normal computer and a Fortran Compiler. There are several Fortran compilers around.

The GNU Compiler Collection (GCC) comes with gfortran as the Fortran compiler. Visit GCC Fortran Webpage.

Intel offers a Fortran compiler that can be downloaded for free and the name of the compiler is ifort. Visit Intel Fortran Webpage.

Nvidia has a compiler suite called NVIDIA HPC SDK that includes Fortran under the command nvfortran. Visit NVIDIA Fortran Webpage.

The sources of this Lesson can be found here

The source code for examples is inside the folder files on the repository You can download the entire repository with the command

$> git clone https://github.com/WVUHPC/Modern-Fortran.git

{: .source}

After downloading the entire repository go to the new folder Modern-Fortran/files

$> cd Modern-Fortran/files

{: .source}

There you can find all the examples from the lesson.

{% include links.md %}