LoginSignup
2
1

More than 5 years have passed since last update.

OpenMPIのインストール

Last updated at Posted at 2016-02-04

OpenMPIの特徴

インストールして、簡単なプログラムを実行しただけなのですが、以下の特徴がある。
1.MPI-2に対応
2.あらかじめ各hostでdaemonを起動させておく必要がない
3.32/64 bit環境に対応
4.CentOS5のbaggageに含まれており、OSインストール時に一緒にインストール可能

インストール手順

1.OpenMPIのページからソースコード(openmpi-1.10.2.tar.bz2)をダウンロード。2016年2月時点ではVersion1.10.2でした
https://www.open-mpi.org/software/ompi/v1.10/

2.圧縮されているので解凍
*** tar xjvf openmpi-1.10.2.tar.bz2***

3../configureを実行
cd /home/liu/openmpi/
./configure --prefix=/home/liu/openmpi

4. コンパイル
make

5.インストール
make install

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1