Intel Fortran Compiler Evaluation for Linux の Install

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 方法

  1. 上記 Web site より file を get. 45MB。登録が必要。 e-mail addresss 先に license file が送られる。
  2. 適当な directory をつくってから tar file をおき展開。
  3. su で ./install を実行。1 を選択。すべてを終えると もとの画面に戻るので 2 を選択。
  4. e-mail が届いたら、license file を /opt/intel/licenses/ の下に置く。
  5. 以下が ~/.cshrc の sample です。bash を使っている人は .bashrc の設定が必要です。
    # 
    # 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"
    
  6. 実行の仕方は、Pen4 では

    ifc -tpp7 -xW test.f -o test.out
    test.out &

    PenIIIやAthlonでは

    ifc -O3 test.f -o test.out
    test.out &

  7. compiler option は、ifc -help で表示。
  8. manual は、

    /opt/intel/compiler50/docs/for_ug_lnx.pdf

    にあります。


コメントまたはアドバイスなどがあれば以下のアドレスへどうぞ。
rsaito@ee.uec.ac.jp