일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GPU
- CPU
- HPE
- Docker
- AMD
- Linux
- conda
- gpfs
- hpcm패치
- 1.9
- rhel
- java
- SLURM
- Singularity
- 1.10
- patch
- build
- HPCM
- nvidia
- ubuntu
- CUDA
- PFSS
- Cray
- rocm
- infiniband
- top500
- HPFSS
- LUSTRE
- Kernel
- Source
- Today
- Total
목록Applications (53)
HPE CRAY 자료 공유
1. dependencies openssl-devel wget cryptsetup libuuid-devel libseccomp-devel squashfs-tools 2. install golang - Linux 2.6.23 binary version $ wget https://golang.org/dl/go1.16.5.linux-amd64.tar.gz - golang 환경 설정 $ export PATH=/home/sylee/go/bin:$PATH 3. install singularity # wget https://github.com/sylabs/singularity/releases/download/v3.8.0/singularity-ce-3.8.0.tar.gz # tar xvzf singularity-ce-..
1. conda environment 생성 $ conda create -n hpl_2.3 2. HPL 의존 패키지 설치 $ source activate hpl_2.3 $ conda install gcc_linux-64 gxx_linux-64 gfortran_linux-64 openmpi mkl mkl-static -c intel 3. HPL Build $ wget https://www.netlib.org/benchmark/hpl/hpl-2.3.tar.gz $ tar xvzf hpl-2.3.tar.gz $ cd hpl-2.3 $ cp setup/Make.Linux_Intel64 Make.Linux_x86_64 $ vi Make.Linux_x86_64 - - - 수정사항 참고 - - - $ make arch..
STREAM: Sustainable Memory Bandwidth in High Performance Computers - 참고 : https://www.cs.virginia.edu/stream 1. Source code download $ wget https://www.cs.virginia.edu/stream/FTP/Code/Versions/stream_omp.c 2. Compile $ gcc -O3 -fopenmp -D OPENMP stream_omp.c -o stream_c.x 3. test - test script 작성 #!/bin/sh #SBATCH -J stream #SBATCH -p short #SBATCH -N 1 #SBATCH -n 1 #SBATCH -o %x_%j.out #SBATCH ..