|
[Sponsors] |
Problems in a Background running of Intel Fortran |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
February 10, 2005, 16:27 |
Problems in a Background running of Intel Fortran
|
#1 |
Guest
Posts: n/a
|
Hello I'm using non-commercial Intel Fortran 8.0 to compile my CFD code. I have one big problem in a background running of this compiler. I've done my work like followings.
palgong> ifort rfdt.f -o rfdt -O2 palgong> ./rfdt & It works well but after my logging out, the running program(rfdt) is stopped by system. So, I tested g77(f77) in comparison to ifort. palgong> g77 rfdt.f -o rfdt -O2 palgong> ./rfdt & It works well after my logging out. I have a headache due to this problem. Thank you. ^^ |
|
February 10, 2005, 17:47 |
Re: Problems in a Background running of Intel Fort
|
#2 |
Guest
Posts: n/a
|
^^ I've got answer to refer discussions in this forum.
palgong> ifort rfdt.f -o rfdt -O2 palgong> ./rfdt > /dev/null & ^^ good luck!! |
|
February 11, 2005, 05:55 |
Re: Problems in a Background running of Intel Fort
|
#3 |
Guest
Posts: n/a
|
you can also do it in more informative way to have the output.
try: > nohup ./rfdt & this will create nohup.out file with standart output written in there. matej |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Intel Fortran Compiler & Tutorial 17 | Young | CFX | 1 | March 30, 2011 02:39 |
Statically Compiling OpenFOAM Issues | herzfeldd | OpenFOAM Installation | 21 | January 6, 2009 10:38 |
intel fortran compiler | emrah | Main CFD Forum | 3 | September 22, 2008 15:49 |
some problem about intel fortran | ztdep | Main CFD Forum | 1 | June 30, 2005 08:19 |
problems with intel fortran compiler | ryoga | Main CFD Forum | 3 | September 24, 2003 12:42 |