2022년 1월 3일 월요일

OpenCL - WSL2에 OpenCL 설치하기

OpenCL

OpenCL(Open Computing Language)은 병렬 처리를 위한 표준 API(Application Programming Interface)입니다.
CPU, GPU, FPGA 등 다양한 병렬 처리 장치에서 작업을 병렬화하여 처리할 수 있도록 지원합니다.

OpenCL은 C99 언어를 기반으로 하며, 프로그래머가 병렬 처리를 위한 코드를 작성하면 OpenCL 런타임이 자동으로 해당 코드를 여러 개의 작은 작업으로 분할하여 병렬 처리 장치에 할당합니다.

OpenCL은 다음과 같은 기능을 제공합니다.

  • 하드웨어 추상화
  • 자동 병렬화
  • 동적 디바이스 및 커널 선택
  • 메모리 관리 및 전송
  • 프로그램 빌드 및 컴파일


회사에서는 주로 ubuntu를 사용하다 보니 제 PC는 WSL2로 ubuntu 환경을 구축 해놓았습니다.
WSL2 환경에 OpenCL을 설치하는 방법을 알아보도록 하겠습니다.


WSL2에서 OpenCL 설치하기

먼저 제 PC환경은 아래와 같습니다.

  • OS: Windows 11
  • WSL2: Ubuntu 20.04
  • CPU: Intel i7
  • GPU: Intel(R) Iris(R) XE Graphics


1. OpenCL package 다운로드

$ mkdir neo
$ cd neo
$ wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.12149.1/intel-igc-core_1.0.12149.1_amd64.deb
$ wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.12149.1/intel-igc-opencl_1.0.12149.1_amd64.deb
$ wget https://github.com/intel/compute-runtime/releases/download/22.39.24347/intel-level-zero-gpu-dbgsym_1.3.24347_amd64.ddeb
$ wget https://github.com/intel/compute-runtime/releases/download/22.39.24347/intel-level-zero-gpu_1.3.24347_amd64.deb
$ wget https://github.com/intel/compute-runtime/releases/download/22.39.24347/intel-opencl-icd-dbgsym_22.39.24347_amd64.ddeb
$ wget https://github.com/intel/compute-runtime/releases/download/22.39.24347/intel-opencl-icd_22.39.24347_amd64.deb
$ wget https://github.com/intel/compute-runtime/releases/download/22.39.24347/libigdgmm12_22.2.0_amd64.deb
cs


2. OpenCL package 설치

$ sudo apt install ./*.deb
$ sudo apt install -y clinfo
cs


3. OpenCL 패키지 설치 확인

/usr/bin/clinfo -l

Platform #0: Intel(R) OpenCL HD Graphics
 `-- Device #0: Intel(R) Graphics [0x9a49]
cs

 

4. NEO 드라이버, OpenCL 라이브러리 설치

$ sudo add-apt-repository ppa:intel-opencl/intel-opencl
$ sudo apt-get update
$ sudo apt install intel-opencl-icd
 
$ sudo apt-get update
$ sudo apt-get install ocl-icd-opencl-dev
cs


5. OpenCL 라이브러리 확인

$ ls /usr/lib/x86_64-linux-gnu | grep CL
libOpenCL.so
libOpenCL.so.1
libOpenCL.so.1.0.0
cs


Reference: 



댓글 없음:

댓글 쓰기