openpose_unity_plugin
openpose_unity_plugin copied to clipboard
Question: How to choose GPU mode
Long story short: I have AMD graphics card and openpose tries to use Cuda, how do I tell it to use OpenCL? Alternatively, how do I use the CPU only?
Using Windows 10, have latest updates for all graphics drivers (Intel and Radeon)
Don't know about the OpenCL part but for using the CPU only mode, you need to change the renderMode = RenderMode.Auto to renderMode = RenderMode.Cpu in the OPWrapper. Refer to the OpenPose documentation for more details.
For running using AMD GPU, I think you just need to install the driver accordingly (posted in OpenPose prerequisites here)
I tried renderMode = RenderMode.Auto to renderMode = RenderMode.Cpu
, it's still wrong,told me:
op_error:cuda check failed(35 vs 0)
@Keneyr Hi, did you solve this problem?