일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 타키온2
- 5호기
- KNL
- 신바람
- Linux
- sinbaram
- 가우시안
- TACHYON2
- neuron
- skl
- HPC
- vasp
- KISTI
- openfoam
- 슈퍼컴퓨터
- GROMACS
- 국가슈퍼컴퓨팅센터
- nurion
- 누리온
- SGE
- abaqus
- Gaussian
- 슈퍼컴퓨팅
- ansys
- 뉴론
- cuda
- Kat
- G16
- 슈퍼컴퓨팅교육
- GPU
- Today
- Total
KISTI 슈퍼컴퓨팅 기술 블로그
누리온 mpiP-3.4.1 설치 소개 본문
KISTI 슈퍼컴퓨터센터의 장비에 mpiP-3.4.1 source 버전으로 설치 하는 방법에 대하여 소개 한다.
1. 설치 환경
구분 | 내용 |
대상 시스템 | 누리온 |
OS Version | 리눅스 / CentOS 7.3 |
CPU | Intel(R) Xeon(R) Gold 6126 |
컴파일러 | GNU 7.2.0 version |
MPI | Openmpi 3.1.0 version |
기타 |
2. 설치 전 환경 설정
KISTI 시스템은 PATH, LD_LIBRARY_PATH 등을 쉽게 하기 위하여 OpenSource 인 Environment Modules(http://modules.sourceforge.net)로 구성되어 있고, 이하 설치 소개 에서는 module load를 이용한 환경 설정 방법을 이용한다.
[ 환경 설정 ]
$ module load gcc/7.2.0 openmpi/3.1.0 |
3. 설치 과정
설치과정 | ||
$ tar xzvf binutils-2.32.tar.gz $ cd binutils-2.32 $ ./configure --prefix=${HOME}/apps/binutils \ --libdir=${HOME}/apps/my_lib \ --includedir=${HOME}/apps/my_include \ --enable-ld=yes --with-system-zlib \ --with-mpc=/apps/common/mpc/1.1.0 --with-mpfr=/apps/common/mpfr/4.0.1 \ --with-gmp=/apps/common/gmp/6.1.2 --enable-install-libiberty $ make $ make install |
설치과정 | ||
$ tar xzvf libunwind-1.2.tar.gz $ cd libunwind-1.2 $ ./configure --prefix=${HOME}/apps/libunwind \ --libdir=${HOME}/apps/my_lib \ --includedir=${HOME}/apps/my_include \ --enable-shared --enable-static $ make $ make install |
설치과정 | ||
$ tar xzvf mpiP-3.4.1.tar.gz $ cd mpiP-3.4.1 $ ./configure --prefix=${HOME}/apps/mpiP \ --libdir=${HOME}/apps/my_lib \ --includedir=${HOME}/apps/my_include \ LDFLAGS="-L/apps/compiler/gcc/7.2.0/openmpi/3.1.0/lib \ -L${HOME}/apps/my_lib" \ CPPFLAGS="-I/apps/compiler/gcc/7.2.0/openmpi/3.1.0/include \ -I${HOME}/apps/my_include" $ vi mpiPi.h ----- 수정 사항은 아래의 내용 참고 ----- $ make $ make install |
[vi mpiPi.h수정 사항]
<수정 전> #ifndef _MPIPI_H #define _MPIPI_H <수정 후> #ifndef _MPIPI_H #define _MPIPI_H #define PACKAGE 1 #define PACKAGE_VERSION 1 |
'SW 설치 문서 창고 > 누리온(NURION)' 카테고리의 다른 글
누리온 OpenFOAM-5.x 버전 설치 소개(SKL) (0) | 2019.06.27 |
---|---|
누리온 OpenFOAM-5.x 버전 설치 소개(KNL) (0) | 2019.06.27 |
누리온 lammps-12Dec18 설치 소개 (0) | 2019.06.05 |
누리온 GROMACS-2018.6 버전 설치 소개 (KNL) (0) | 2019.05.29 |
누리온 GROMACS-2018.6 버전 설치 소개 (SKL) (0) | 2019.05.29 |