GithubHelp home page GithubHelp logo

MultiGPU Tensorflow about tensorflow-examples HOT 3 CLOSED

saonim avatar saonim commented on May 3, 2024
MultiGPU Tensorflow

from tensorflow-examples.

Comments (3)

aymericdamien avatar aymericdamien commented on May 3, 2024

By default, Tensorflow will use all available GPUs, so to use some specific gpu, you have to use "CUDA_VISIBLE_DEVICES" flag, and specify all device ids that you want to use.
For example: export CUDA_VISIBLE_DEVICES="0,1"

from tensorflow-examples.

saonim avatar saonim commented on May 3, 2024

Thanks for your response. This works!

I have one more question. My goal here is to be able to run Alexnet code on multiple GPUs.

With multi-GPU setting (CUDA_VISIBLE_DEVICE flag on), it allocates on all specified devices (GPU Memory usage is high on Nvidia-smi), but does not do computations (no memory utilization from Nvidia-smi while the program is running) on none except one. Any suggestion to make it truly parallel?

from tensorflow-examples.

aymericdamien avatar aymericdamien commented on May 3, 2024

Yes, because you have to allocate yourself operations to specific gpu, Tensorflow can't do it automatically.

with tf.device('/gpu:0'):
   ...
with tf.device('/gpu:1'):
   ...

But in order to efficiently use multiple GPU to train neural networks, you have to coordinate training. I suggest you check the official tutorial, they update parameters synchronously after each GPU finished to process a batch of data.
https://www.tensorflow.org/versions/r0.7/tutorials/deep_cnn/index.html#training-a-model-using-multiple-gpu-cards

image

from tensorflow-examples.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.