opencl

clEnqueueReadBuffer의 OpenCL 처리
opencl

clEnqueueReadBuffer의 OpenCL 처리

후속 조치이 문제내 마지막 코드 조각 #include <stdio.h> #include <stdint.h> #include <stdlib.h> #define CL_TARGET_OPENCL_VERSION 210 #include "CL/cl.h" char* program_src = "__kernel void SAXPY (__global float* x, __global float* y, float a)\n" "{\n" "const int i = get_global_id ...

Admin

AMD GPU를 사용하여 Davinci Resolve 실행
opencl

AMD GPU를 사용하여 Davinci Resolve 실행

AMD 7900 XTX GPU가 탑재된 Arch Linux 시스템에서 Davinci Resolve를 실행하고 싶습니다. 현재 Resolve는 시작되지도 않습니다(프로세스는 시작 후 즉시 종료됩니다). 출력은 다음과 같습니다. $ ./resolve ActCCMessage Already in Table: Code= c005, Mode= 13, Level= 1, CmdKey= -1, Option= 0 ActCCMessage Already in Table: Code= c006, Mode= 13, Level=...

Admin

AMDGPU는 해시캣을 지원하지 않습니다
opencl

AMDGPU는 해시캣을 지원하지 않습니다

AMDGPU가 hashcat에서 작동하지 않습니다. 이 문제를 해결하는 방법을 아는 사람이 있습니까? $ ~ hashcat -I hashcat (v6.2.6) starting in backend information mode clCreateCommandQueue(): CL_OUT_OF_HOST_MEMORY OpenCL Info: ============ OpenCL Platform ID #1 Vendor..: Advanced Micro Devices, Inc. Name....: AMD Ac...

Admin

opensuse tumbleweed를 업데이트한 후 Linux가 시작 시 멈춤
opencl

opensuse tumbleweed를 업데이트한 후 Linux가 시작 시 멈춤

opensuse tumbleweed를 설치하고, 최신 버전으로 업데이트하고, opencl 사용을 위해 amdgpu를 설치했습니다. 다시 시작하고 잘 작동했습니다. "sudo zypper dup"을 통해 업데이트되었으며 일부 커널 변경 사항이 있습니다. 재부팅하고 부팅 시 멈췄습니다(스크린샷 참조). 마지막 몇 메시지에는 amdgpu 및 drm이 언급되어 있으므로 amdgpu에 문제가 있는 것 같지만 opencl에는 amdgpu가 필요합니다. 두 개의 GPU가 설치되어 있습니다: Gigabyte rad...

Admin

Systemd-nspawn 및 gpgpu
opencl

Systemd-nspawn 및 gpgpu

nspawn 컨테이너 내에서 GPU 컴퓨팅 애플리케이션을 실행하려고 합니다. 컨테이너를 다음과 같이 구성했습니다. /etc/systemd/nspawn/ubuntuintel.nspawn: argon# cat ubuntuintel.nspawn [Exec] Capability=CAP_SYS_ADMIN [Files] Bind=/dev/dri /etc/systemd/system.control/[email protected]/50-DeviceAllow.conf: # This is a drop-in...

Admin

AMD RX 6900XT를 사용하는 Ubuntu 20.04의 OpenCL
opencl

AMD RX 6900XT를 사용하는 Ubuntu 20.04의 OpenCL

i9 9900K, RX 6900XT 및 32GB RAM으로 구성된 시스템에 Ubuntu 20.04(커널 버전 5.8.0-50-generic)를 새로 설치했습니다. 이 시스템은 대학 프로젝트용 OpenCL 코드를 GPU에서 실행하도록 설계되었습니다. 지금까지 를 사용하여 최신 Pro Radeon 드라이버(버전 21.10)를 설치했고 ./amdgpu-pro-install -y --opencl=pal,legacy, 를 사용하여 OpenCL 헤더를 설치했으며 , 와 를 모두 sudo apt-get ins...

Admin