GPU and CPU code: How to do?
이전 댓글 표시
I would like to share my MATLAB project with others that does not have any GPU card in your computers, but I want to use the GPU power in my computer.
How can I write ONLY ONE MATLAB code that can be run with and without GPU system?
My main GPU commands are:
- parfor
- GPUarray
In C/C++ language, we can write a pre-processor that can be this "magic shift". Is possible to do this in MATLAB?
채택된 답변
추가 답변 (1개)
Joss Knight
2019년 1월 9일
2 개 추천
This is exactly why MATLAB's GPU support is so awesome! You should only need to insert your 'shim' for gpu data, as OCDER describes in their answer, in a very limited number of places. If you are doing Deep Learning, it's even easier: training and inference will automatically run on the GPU if there is one, and the CPU if not.
댓글 수: 4
Nycholas Maia
2019년 1월 10일
Constantino Carlos Reyes-Aldasoro
2020년 6월 23일
How can you swap between GPU and CPU? I was running a U-Net training on a single CPU, it took ages but worked well, then I enabled the GPU by updating the nvidia driver, it was faster but before finishing there was an error of the memory whilst calling semantic segmentation:
net = trainNetwork(trainingData,layers,opts);
C = semanticseg(currentData,net);
Error using nnet.internal.cnngpu.convolveBiasReluForward2D
Out of memory on device. To view more detail about
available memory on the GPU, use 'gpuDevice()'. If the
problem persists, reset the GPU by calling 'gpuDevice(1)'.
Error in
nnet.internal.cnn.layer.util.ConvolutionReLUGPUStrategy/forward
(line 16)
Z =
nnet.internal.cnngpu.convolveBiasReluForward2D(
...
Error in nnet.internal.cnn.layer.ConvolutionReLU/predict
(line 144)
Z = this.ExecutionStrategy.forward( X, ...
Error in nnet.internal.cnn.DAGNetwork/activations (line
571)
outputActivations =
thisLayer.predict(XForThisLayer);
Error in DAGNetwork/calculateActivations (line 86)
YBatch = predictNetwork.activations({X},
layerIndex, layerOutputIndex);
Error in DAGNetwork/activationsSeries (line 239)
Y = this.calculateActivations(X, layerID, 1,
varargin{:});
Error in SeriesNetwork/activations (line 673)
Y =
this.UnderlyingDAGNetwork.activationsSeries(X,
layerID, varargin{:});
Error in semanticseg>iClassifyImagePixels (line 441)
allScores = activations(net, X, params.PixelLayerID,
...
Error in semanticseg (line 248)
[Lroi, scores, allScores] = iClassifyImagePixels(Iroi,
net, params);
Error in segmentationHeLaUnet (line 194)
C =
semanticseg(currentData,net);
This is my gpu:
>> gpuDevice()
ans =
CUDADevice with properties:
Name: 'GeForce 930MX'
Index: 1
ComputeCapability: '5.0'
SupportsDouble: 1
DriverVersion: 11
ToolkitVersion: 10
MaxThreadsPerBlock: 1024
MaxShmemPerBlock: 49152
MaxThreadBlockSize: [1024 1024 64]
MaxGridSize: [2.1475e+09 65535 65535]
SIMDWidth: 32
TotalMemory: 2.1475e+09
AvailableMemory: 1.5761e+09
MultiprocessorCount: 3
ClockRateKHz: 1019500
ComputeMode: 'Default'
GPUOverlapsTransfers: 1
KernelExecutionTimeout: 1
CanMapHostMemory: 1
DeviceSupported: 1
DeviceSelected: 1
>>
I know it is not a great GPU, how can I switch to do the segmentation on the CPU (which was working) instead of the GPU (which runs out of memory)?
Joss Knight
2020년 6월 23일
Use the option 'ExecutionEnvironment', 'cpu' as input to semanticseg to force CPU execution, or change the 'MiniBatchSize' option to something less (the default is 128) so that your GPU can handle the data.
Biraj Khanal
2022년 1월 3일
편집: Biraj Khanal
2022년 1월 3일
I am trying to compare the performance of a particular function using GPU and CPU.
Can we force any function to use CPU instead of GPU or does it only work with the segmentation function ?
카테고리
도움말 센터 및 File Exchange에서 Parallel and Cloud에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!