일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- version
- Kernel
- HPFSS
- gpfs
- conda
- infiniband
- GPU
- 1.10
- ubuntu
- 1.9
- Cray
- LUSTRE
- SLURM
- PFSS
- Singularity
- hpcm패치
- java
- top500
- HPCM
- nvidia
- rhel
- HPE
- CPU
- AMD
- patch
- build
- CUDA
- Linux
- Docker
- Source
- Today
- Total
목록전체 글 (98)
HPE CRAY 자료 공유
1. Front panel Item Description 비고 1 Drive bays 2 Slot 9 PICe3 x 16 3 Slot 10 PICe3 x 16 4 NIC port 2 5 NIC port 1 6 Dedicated iLO port(optional) 7 Serial number and iLO label pull tab 8 USB 3.0 connector 9 SUV connector - Chassis and Accelerator Trays Item Description 비고 1 HPE Apollo 6500 Chassis (4U) 2 Low profile PCIe Gen3 x16 slot 3 Embedded 1Gb NIC 2 4 Embedded 1Gb NIC 1 5 Dedicated iLO Por..
nvidia-smi 실행 화면 1. Driver Version - 현재 설치되어 있는 nvidia driver version을 확인 할 수 있습니다. Driver Version: 460.27.04 2. CUDA Version - 현재 드라이버 버전과 맞는 cuda 추천 버전(주의: 절대 현재 설치되어 있는 버전이 아님) CUDA Version: 11.2 3. GPU/FAN 설치되어 있는 GPU number FAN N/A(Not Available) fan이 없는 Tesla 모델. ※ RTX 계열의 팬이 있는 모델을 사용하면 56%같은 숫자와 %로 표기. 4. Name Nvidia GPU Model(A100-SXM-80GB) 5. Temp GPU의 현재 온도를 표시 합니다. 41C 6. Perf(Perfor..
sinfo 명령을 이용하여 "idle" 상태의 노드를 확인 합니다. $ sinfo PARTITION AVAIL TIMELIMIT NODES STATE NODELIST short* up 4:00:00 11 down* gpu_a100n[01-06],gpu_v100n[01-05] short* up 4:00:00 1 alloc node43 short* up 4:00:00 6 idle gpu_v100n[06-08],node[44-46] normal up 1-00:00:00 11 down* gpu_a100n[01-06],gpu_v100n[01-05] normal up 1-00:00:00 1 alloc node43 normal up 1-00:00:00 6 idle gpu_v100n[06-08],node[44-46] ..
1. ssh-keygen 실행 예제 $ ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/home/leesangy/.ssh/id_rsa): Created directory '/home/leesangy/.ssh'. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/leesangy/.ssh/id_rsa. Your public key has been saved in /home/leesangy/.ssh/id_rsa.pub. The ke..
1. MLNX-OS Software Versions - 최신버전 : MLNX-OS v3.9.3302 (2021-10 기준) - 경로 : https://docs.mellanox.com > software > Switch Software > MLNX-OS (InfiniBand) 2. Mellanox Quantum Firmware - 최신버전 : Mellanox Quantum Firmware v27.2008.3328 (출시일 : 2021-09-20) - 경로 : https://docs.mellanox.com > software > Switch Firmware > NVIDIA Quantum
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 ..