2001.12.22 by R. Saito, especial thanks for Prof. Kuroki (UEC)
Intel 社の The evaluation versions of Intel Software Development Productsでは、Non-Commercial Unsupported Software として、 fortran compiler on Linux を 提供下さっています。(感謝)。 利用者の感想では、tip をつくっている会社だけに、格段に speed up が 期待できるようです。
これを RedHat 7.1J (Pentuim IV 2GHz, 1GB memory) にinstall しました。
Install 方法
# # ia32 intel 32 bit fortran compiler # .cshrc # setenv IA32ROOT /opt/intel/compiler50/ia32 setenv INTEL_FLEXLM_LICENSE /opt/intel/licenses/l_for.lic setenv PATH "${PATH}:$IA32ROOT/bin" setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH}":"$IA32ROOT/lib"
ifc -tpp7 -xW test.f -o test.out
test.out &
PenIIIやAthlonでは
ifc -O3 test.f -o test.out
test.out &
/opt/intel/compiler50/docs/for_ug_lnx.pdf
にあります。