일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Compression
- convolution
- Qubit
- cloud
- jhVM
- deep_learning
- dnn
- POD
- 반도체기초
- nvidia
- jhDNN
- 양자역학의공준
- quantum_computing
- CUDA
- 딥러닝
- DRAM
- HA
- C++
- GPU
- SpMM
- kubernetes
- stl
- 클라우드
- 쿠버네티스
- sycl
- CuDNN
- Semiconductor
- FPGA
- 반도체
- flash_memory
Archives
- Today
- Total
Computing
[SYCL] SYCL 설치 Ubuntu 18.04 (Nvidia GPU, Intel CPU) 본문
Parallel | Distributed Computing/SYCL
[SYCL] SYCL 설치 Ubuntu 18.04 (Nvidia GPU, Intel CPU)
jhson989 2022. 2. 23. 21:29oneAPI 설치
- 주의* 현재 Intel oneAPI의 dpcpp은 nvidia gpu를 지원하지 않음 -> 밑의 clang++을 설치하여야 함.
- SYCL 프로그램 컴파일을 위한 DPC++ compiler 설치
- 설명 링크: https://www.intel.com/content/www/us/en/develop/documentation/get-started-with-dpcpp-compiler/top.html
- 다운로드 링크: https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit.html
- OS, 다운로드 방식 선택
- 다운로드 받은 .sh 파일 실행
- GUI downloader 설명에 따라 설치 하기
- DPC++ compiler 뿐만 아니라 다른 tool을 사용하기 위해서는 libdrm2, libxcb-dri3-0
- sudo apt-get install libdrm2 libxcb-dri3-0
- DPC++ compiler 뿐만 아니라 다른 tool을 사용하기 위해서는 libdrm2, libxcb-dri3-0
- 설치 완료 후 환경 변수 설정해주기
- source <install_dir>/setvars.sh
- ex) source /opt/intel/oneapi/setvars.sh
clang++ 설치
export DPCPP_HOME=~/sycl_workspace
mkdir $DPCPP_HOME
cd $DPCPP_HOME
git clone https://github.com/intel/llvm -b sycl
python $DPCPP_HOME/llvm/buildbot/configure.py --cuda
python $DPCPP_HOME/llvm/buildbot/compile.py
Option 1. Nvidia GPU
- Nvidia GPU 사용을 위하여 Nvidia driver 및 CUDA toolkit 설치 필요
- 시대가 좋아져서, Ubuntu [Software & Update]에서 설치 가능
- Ubuntu 어플 중 [Software & Update]
- [Additional Drivers] 탭 선택
- 원하는 버전의 driver 설치
Option 2. Intel CPU
- Intel CPU 사용을 위해서는 Intel CPU Runtime for OpenCL Applications with SYCL support 설치 필요
- 설명 링크: https://www.intel.com/content/www/us/en/developer/articles/technical/intel-cpu-runtime-for-opencl-applications-with-sycl-support.html
- apt를 통해 다운로드 할 수 있음
- apt install intel-oneapi-runtime-opencl
'Parallel | Distributed Computing > SYCL' 카테고리의 다른 글
Intel DevCloud 실행 방법 (0) | 2022.03.16 |
---|---|
[SYCL] Data Parallel C++'s Table of Contents (0) | 2022.02.16 |