-
use command pgf90 for FORTRANf90, pgf77 for FORTRAN77, pgf95 for
FORTRAN95
example: pgf90 -O3 file.f90 -o file.e
This command compiles FORTRAN90 code file.f90 with optimization option -O3
and creates an executable file file.e
To submit file.e you can write a simple shell-script file, run.sh , as
follows:
#!/bin/bash
#$ -cwd
file.e
Then submit run.sh by typing "qmon" and clicking on "Job Submit", or you can submit directly from the command line using "qsub run.sh"
Back to Aster Q/A