Checking if persistent variable exists on GPU: check if 'data no longer exists on the GPU' for a variable.

5 次查看(过去 30 天)
Hello,
I am running into an issue if I have persistent variables that I am storing as GPU arrays. This is especially useful if they are somewhat large, static variables, since I don't need to move them on/off the device or recalculate them on every function call. However, if I have foolishly reset my gpuDevice, I run into issues. Typically I will have code of the form:
persistent x
if isempty(x)
x = calculateX(argin)
end
I then run into an issue on isempty, which unsurprisingly throws an error 'The data no longer exists on the device.' The isempty boolean never returns, the program returns an error, and the persistent variable is never assigned.
What I really need is a logical check as to whether a variable has been cleared on the device, but I cannot seem to find any obvious solutions. Everything else I have thought of seems too kludgy:
(A) use a try-catch statement around the isempty statement (yuck).
(B) have a custom reset(gpuDevice) function that also calls clear on all of the functions that use persistent gpuArrays (more yuck)
(C) have a try-catch statement at the header of each function that will reset all persistent variables if it throws an error.
Since the obvious solution is just a logical telling me whether a variable has been cleared, these do not seem like the best options. There, of course, may be good reasons to avoid storing persistent variables on the GPU, but I haven't seen them.
Thanks,
-Dan

采纳的回答

Edric Ellis
Edric Ellis 2018-12-6
You need existsOnGPU, like so:
x = gpuArray(1);
assert(existsOnGPU(x));
reset(gpuDevice);
assert(~existsOnGPU(x));
  1 个评论
D. Plotnick
D. Plotnick 2018-12-6
编辑:D. Plotnick 2018-12-6
Thanks, that is exactly the command I needed.
Note (this may be intentional) but
doc existsOnGPU
sends you to the gpuArray help document. You then have to access existsOnGPU via the See Also links.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by