Changes between Initial Version and Version 1 of openmp_programming


Ignore:
Timestamp:
May 5, 2008, 3:25:12 PM (16 years ago)
Author:
rider
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • openmp_programming

    v1 v1  
     1= OpenMP Usage =
     2== OpenMP Installation ==
     3Step1: rider@hd05:~$ wget http://www.hpcc.jp/Omni/ftp/Omni/Omni-1.6.tar.gz  [[BR]]
     4Step2: rider@hd05:~$ tar zxvf Omni-1.6.tar.gz[[BR]]
     5Step3: rider@hd05:~$ cd Omni-1.6[[BR]]
     6Step4: rider@hd05:~$ ./configure --prefix=/opt/openmp[[BR]]
     7Step5: rider@hd05:~$ make & make install[[BR]]
     8== Intel C++ Compiler Installation ==
     9Step1: Download the Intel C++ Compiler from http://www.intel.com/cd/software/products/asmo-na/eng/340679.htm  [[BR]]
     10Step2: rider@hd05:~$ tar zxvf l_cc_p_10.1.015_intel64.tar.gz (ver: Intel(R)64) [[BR]]
     11Step3: rider@hd05:~$ cd l_cc_p_10.1.015_intel64 [[BR]]
     12Step4: rider@hd05:~$ ./install.sh ( Follow the installation steps -> Free code: NZCR-FZ66ZWWD [[BR]]
     13Step5: Confirm your installation path: /opt/intel/cce/10.1.015/ [[BR]]
     14Step6: source /opt/intel/cce/10.1.015/bin/iccvars.sh or export PATH=$PATH:/opt/intel/cce/10.1.015/bin to your /etc/profile [[BR]]
     15Step7: icc -help (If it works fine than it's done) [[BR]]
     16== Intel Fortran Compiler Installation ==
     17Step1: Download the Intel Fortran Compiler from http://www.intel.com/cd/software/products/asmo-na/eng/340679.htm  [[BR]]
     18Step2: rider@hd05:~$ tar zxvf l_fc_p_10.1.015_intel64.tar.gz [[BR]]
     19Step3: rider@hd05:~$ cd l_fc_p_10.1.015_intel64 [[BR]]
     20Step4: rider@hd05:~$ ./install.sh ( Follow the installation steps -> Free code: NRDN-29Z6K5WT [[BR]]
     21Step5: Confirm your installation path: /opt/intel/fce/10.1.015/ [[BR]]
     22Step6: source /opt/intel/fce/10.1.015/bin/ifortvars.sh or export PATH=$PATH:/opt/intel/fce/10.1.015/bin [[BR]]
     23Step7: ifort -help (If it works fine than it's done) [[BR]]
     24== Intel Threading Analysis Tool ==
     25Step1: Donwload the Intel Threading Analysis Tool from https://registrationcenter.intel.com/RegCenter/AutoGen.aspx?ProductID=893&AccountID=&ProgramID=&RequestDt=&rm=EVAL&lang=  [[BR]]
     26Step2: rider@hd05:~$ tar zxvf Tcheck3.1_009cli_lin.tar.gz [[BR]]
     27Step3: rider@hd05:~$ sudo chmod -R a+rx Tcheck3.1_009cli_lin [[BR]]
     28Step4: rider@hd05:~$ cd Tcheck3.1_009cli_lin [[BR]]
     29Step5: rider@hd05:~$ ./install.sh [[BR]]
     30Step6: Confirm your installation path: /opt/intel/itt [[BR]]
     31Step7: source /opt/intel/itt/tcheck/bin/32e/tcheckvars.sh [[BR]]
     32Step8: tcheck_cl -help (If it works fine than it's done) [[BR]]