Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
1–10 of 10 posts
Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#2Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#3Does docker support gpus or how does this work out?
Nvidia make it pretty straight-forward now but we had to branch from that approach a bit for the CoreOS deployment.
https://github.com/NVIDIA/nvidia-docker (Nice pictures)
https://docs.docker.com/engine/reference/run/ (Docker documentation, search for 'privileged')
The approach is a bit different depending on your host operating system. You'll also find there are constraints when you introduce a virtualisation layer, like virtualbox or parallels on your desktop - GPUs can be mapped through, but it's painful(ish).
Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#4Does docker support gpus or how does this work out?
The "--device" flag allows you to map devices through to a Docker container. It runs in 'privileged' mode though, so isn't suitable for a shared host. Nvidia make it pretty straight-forward now but we had to branch from that approach a bit for the CoreOS deployment. https://github.com/NVIDIA/nvidia-docker (Nice pictures) https://docs.docker.com/engine/reference/run/ (Docker documentation, search for 'privileged') The…
Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#5Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#6Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#7I am lost at figuring out the best way to configure all the dependencies for decent performance.
I don't have GPU, but I suppose that would make a difference?
Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#8Nice. Does the host OS need to have CUDA installed?
Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#9Re: Show HN: Dockerized GPU Deep Learning Solution (Code and Blog and TensorFlow Demo)
#10Does docker support gpus or how does this work out?
The "--device" flag allows you to map devices through to a Docker container. It runs in 'privileged' mode though, so isn't suitable for a shared host. Nvidia make it pretty straight-forward now but we had to branch from that approach a bit for the CoreOS deployment. https://github.com/NVIDIA/nvidia-docker (Nice pictures) https://docs.docker.com/engine/reference/run/ (Docker documentation, search for 'privileged') The…