Skip to main content

PyTorch in Ray Docker container with NVIDIA GPU support on Google Cloud

· Updated on April 30, 2023
Mikhail Volkov

One of the commercial projects we are working on is based on Ray and uses PyTorch to process data using AI models. To create a development environment for the Grafana Application plugin, we built Docker images for the Backend. One of the requirements was to support PyTorch with CPU and NVIDIA GPU in the same image.

Processing AI models with CPU in PyTorch works out of the box and can be an option for the Development environment. Still, it's slow and not applicable for real-time operations or performance testing. To test NVIDIA GPU, we used one of the Google Cloud instances with GPU support.

This article will share our experience building Docker images with Ray and PyTorch on Google Cloud instances with GPU support. Ray is an open-source project that makes it simple to scale any compute-intensive Python workload from deep learning to production model serving.

PyTorch is an open-source machine learning framework that accelerates the path from research prototyping to production deployment.

Google Cloud instances

If you have never used Google Cloud instances with GPU support in your organization, you will need to increase the quota to start any instances. The default quota for GPU instances is 0. You can learn more about GPU quota and how to increase it in the Documentation.

Different regions and zones provide various NVIDIA GPU models, and some of them are not available when you try to start a new instance. It took us a couple of retries to choose the right mix of GPU model and region to create a new instance.

We selected:

  • US Central region, Zone A.
  • 1 x NVIDIA Tesla K80.
  • Type N1-Standard-1 with one vCPU and 3.75Gb memory, which we can upgrade at any time for performance testing up to 8 vCPU.
  • Ubuntu 20.04 LTS with 30Gb Size.
Creating a new Google Cloud instance with NVIDIA Tesla K80 GPU.
Creating a new Google Cloud instance with NVIDIA Tesla K80 GPU.

Installation

We followed the Google Cloud documentation for installing GPU drivers. Installation using automated scripts took a while, and drivers could not load after a restart.

Most of the installed packages are not required for our deployment. We use Docker containers and have no plans to run applications on the host machine.

Instead of using provided scripts, we installed the latest version of NVIDIA Drivers for Tesla K80 from the repository.

sudo apt update
sudo apt install nvidia-driver-470

After the installation was completed, the command nvidia-smi displayed information about the GPU:

Command `nvidia-smi` can locate NVIDIA GPU after NVIDIA drivers installation.
Command `nvidia-smi` can locate NVIDIA GPU after NVIDIA drivers installation.

Support GPU in Docker

After NVIDIA drivers are installed on the host and the command nvidia-smi was able to locate GPU, we could move forward to install Docker, Docker Compose, and NVIDIA Toolkit.

sudo apt install docker-compose
distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \
&& curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add - \
&& curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list

sudo apt update
sudo apt-get install -y nvidia-docker2

sudo systemctl restart docker

At this point, a working setup could be tested by running a base CUDA container and you should see the same output:

docker run --rm --runtime=nvidia nvidia/cuda:11.0-base nvidia-smi
Running the `nvidia-smi` command in the Docker container.
Running the `nvidia-smi` command in the Docker container.

You can learn more about the NVIDIA Container toolkit installation in the Documentation.

Docker Compose with GPU support

The Docker-compose version 1.25 does not support NVIDIA runtime configuration and should be upgraded to version 1.27 or later.

The latest version of Docker Compose can be downloaded from GitHub.

sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

For our tests, we created a file docker-compose.yml to run nvidia-smi command and image based on Ray with a test PyTorch application.

The environment variable NVIDIA_VISIBLE_DEVICES: all is essential for PyTorch to see all GPU devices.

version: "2"
services:
nvidia:
image: nvidia/cuda:11.0-base
runtime: nvidia
command: nvidia-smi
app:
container_name: app
build:
context: ./app
runtime: nvidia
environment:
NVIDIA_VISIBLE_DEVICES: all

Configuration

To build a Docker image based on the latest version of Ray, we created a Docker file:

blog/2022-06-10-pytorch-nvidia-gpu/Dockerfile
loading...

File requirements.txt to install the 1.10.0 version of the PyTorch:

torch==1.10.0

Here is the application we used to test PyTorch with CUDA support:

blog/2022-06-10-pytorch-nvidia-gpu/torch.py
loading...

Docker container

Let's build and test created application container:

root@gpu:/app# docker-compose build app
Building app
Sending build context to Docker daemon 4.096kB
Step 1/6 : FROM rayproject/ray:1.10.0-py38
---> 2f51f6f631dd
Step 2/6 : WORKDIR /app
---> Using cache
---> bd1c46292a36
Step 3/6 : COPY requirements.txt ./
---> Using cache
---> 360bbc5e895d
Step 4/6 : RUN pip3 install -r requirements.txt
---> Using cache
---> 3379070d95d2
Step 5/6 : COPY ./app.py ./
---> 5661ce1b61fc
Step 6/6 : CMD ["python3", "./app.py"]
---> Running in 75c604e59d9f
Removing intermediate container 75c604e59d9f
---> cdd7582c3ee2
Successfully built cdd7582c3ee2
Successfully tagged app_app:latest

root@gpu:/app# docker-compose up app
Recreating app ... done
Attaching to app
app | CUDA Available: True
app | CUDA Devices count: 1
app | CUDA Version: 10.2
app exited with code 0

Summary

We successfully tested PyTorch with CUDA 10.2 and 11.4 in the Docker containers on the Google Cloud instance with GPU.

At this point, we are ready to add the actual application with additional Python requirements and build a full-featured Backend image.