Posts

Showing posts with the label video-processing

How to make the openpose use caffe without cuda supported

How to make the openpose use caffe without cuda supported I wan to try Openpose: https://github.com/CMU-Perceptual-Computing-Lab/openpose in my laptop with an AMD video card,so no cuda is possible, is that possiable?How? 4 Answers 4 Running caffe with non-NVIDIA card requires opencl branch. Integrating that branch with the caffe branch used by OpenPose might be tricky (and might be straight forward - I haven't tried it myself). If you want to "play it safe", you can disable ALL GPU support by setting OpenPose CPU_ONLY := 1 In your Makefile.config before compiling caffe. This way you'll have a CPU version that does not require any CUDA/NVIDIA support. Makefile.config I would add to Shai's answer that you need to disable # USE_CUDNN := 1 sometime when its left on,the setup function of layers do some CUDA ASSERT checking that fails and prevent the program to continue There is...