Reputation: 35
I have installed tensorflow cpu only and now I want to enable gpu feature. system: Ubuntu 18.04.1 LTS python 3.7 using anaconda tensorflow 1.13.1
Upvotes: 0
Views: 804
Reputation: 3
Tensorflow-GPU is additional package, different from Tensorflow CPU.
You will need CUDA-compatible GPU to use tensorflow GPU! Before you start, you will need to install: CUDNN, CUDA Toolkit, libcupti.
Then, using pip:
pip install --upgrade tensorflow-gpu
Upvotes: 0
Reputation: 31
See the tensorflow installation guide https://www.tensorflow.org/install/pip
Upvotes: 1