I am interested in running deep learning code on my Ryzen 3400g system. Online I saw:
I trying to use Vega 11 on my Ryzen 3400G, I'm aware that I cannot run HIP, but I possibly could run opencl on this APU, my first step is to import tensorflow, but I got an error,
This is from https://github.com/ROCmSoftwarePlatform/tensorflow-upstream/issues/669
Is it really impossible to use the ryzen 3400g with Radeon vega 11 gpu with tensorflow?
—————
Could it be made to work with opencl instead (as in https://missinglink.ai/guides/tensorflow/tensorflow-support-opencl/ )?
According to the official HIP Github page,:
And yes you can use
tensorflow
library like a normal python module, but you cannot usetensorflow-gpu
which leverages Cuda cores available only Nvidia GPUs. And the Radeon Open Compute project is basically aimed at 'HPC and Ultrascale computing' and you can see the official supported GPUs here. They have also mentioned that the ROCm project does not support built-in GPUs.So basically the answer is no, you won't be able to run
tensorflow-gpu
on your Ryzen 3600G system but you can use the normaltensorflow
library without GPU acceleration. There are lots of threads discussing the issue so hopefully something will come up soon.