필터 지우기
필터 지우기

How to use GPU only on the nodes that have it

조회 수: 4 (최근 30일)
Maria
Maria 2022년 2월 25일
답변: Joss Knight 2022년 3월 25일
Hi,
I have a cluster with 8 nodes, with 4 cores each.
Only node 1 has a GPU. If I launch the command
spmd
gpuDeviceCount("available")
end
I get that the first four labs have answer "1", and the other labs have answer "0. So everything as expected. In the code I want to run, some operations will be performed on the GPU, some others not. I am testing and I tried to create a gpuArray, but I get the following error
>> spmd
gpuArray([2 2 2]);
end
Error detected on workers 9 10 11 12 13 14 15 21 22 23 24 25 26 27 28 29 30 31 32.
Caused by:
Failed to load graphics driver. Unable to load library 'libcuda.so.1'. The error was:
libcuda.so.1: cannot open shared object file: No such file or directory
Update or reinstall your graphics driver. For more information on GPU support, see GPU Support by Release.
How can I tell Matlab that the array shall be created only in the node that has the GPU, namely, node 1 ?
Best
Maria
  댓글 수: 1
Ive J
Ive J 2022년 2월 25일
편집: Ive J 2022년 2월 27일
what about this?
spmd
if gpuDeviceCount
gpuArray([2 2 2])
else
% do something else
end
end

댓글을 달려면 로그인하십시오.

답변 (1개)

Joss Knight
Joss Knight 2022년 3월 25일
canUseGPU is the favoured way to guard your code.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by