Skip to content

leestott/Azure-GPU-Setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azure Step-by-Step Setup

Key-Points

  • This guide will walk you through running your code on GPUs in Azure. Before we start, it cannot be stressed enough: do not leave the VM running when you are not using it.
  • The expected time from start to finish is 1-2 hours. The most time consuming part will be downloading and installing NVIDIA drivers, CUDA and Tensorflow.

FAQ

Creating a Microsoft account

  • You should have received an email to your inbox with an invitation to join the Azure subscription from your Azure Administrator.
  • Please follow the instructions using the email address that received this invitation.

Getting started

Logging into Azure portal

  • Once you have created your account, log in to Azure at: portal.azure.com
  • After logging in, you should reach the dashboard page.
  • If you have multiple subscriptions (e.g., you previously signed up for a free one), you must select the name of your institution. by clicking in the top right quarter. If no such option appears please contact your Azure Admin.

Create a VM

  • Once you are logged in, click on the + on the left. Select Ubuntu Server 16.04 LTS.
  • Azure Portal VM Selection
  • You will be presented withe VM Image detauls simply Click Create.
  • Azure Portal VM Selection
  • Fill in the name, user, etc for your VM. You must change the storage type from SSD to HDD. Also, you must use the region that you have been allotted.
  • Azure Portal VM Selection
  • View all (click the button) of the options and select NV6 by scrolling through the list. If NV6 does not show up, then you probably chose the wrong region or chose SSD in the previous page. Also, if you do not select NV6 (or any of the NV/NC options), then you are not using a GPU instance and the setup scripts later will fail.
  • Azure Portal VM Selection
  • Select the appropiate VM Size and Click OK.
  • Azure Portal VM Selection
  • Wait for the configuration to validate and then click OK.
  • Azure Portal VM Selection

Using the VM

Finding your VM

Login to http://portal.azure.com Click all resources and select your VM. Our subscription has many, but yours will only have one if you just followed the setup instructions.

  • Azure Portal VM Selection

Spinning up your VM

If you just completed the previous part and the VM has finished deploying, then your VM should be running already.

  • Azure Portal VM Selection

Connecting (SSH) to your VM

Once your VM is started (it may take a few minutes). Click connect and follow the instructions.

  • Azure Portal VM Selection

Stopping your VM

  • Once you are done working, stop your VM. You must do this or your credits will disappear at a rate of $1+ every hour the VM is on.
  • Make sure your VM is fully stopped. If you see “stopped still incurring compute charges”, you must hit stop again.
  • Azure Portal VM Selection
  • Azure Portal VM Selection

Completing CUDA/Tensorflow setup

  • You will need to SSH into your VM.

##Installing CUDA and Tensorflow dependencies.

There are two scripts that you will need to run and your VM will need to reboot in the between running them.

##[Step 1]

./gpu-setup-part1.sh

This will install some libraries, fetch and install NVIDIA drivers, and trigger a reboot. (The command will take some time to run.)

Once your VM has finished restarting.

[Step 2]

SSH into the VM again. Navigate to the azure-gpu-setup directory again. Run the command:

./gpu-setup-part2.sh

This script installs the CUDA toolkit, CUDNN, and Tensorflow. It also sets the required environment varibales. Once the script finishes, we must do:

source ~/.bashrc

This ensures that the shell will use the updated environment variables. Now, to test that Tensorflow and the GPU is properly configured, run the gpu test script by executing:

python gpu-test.py

  • Azure Portal VM Selection

Filing a support ticket

  • Click on the help icon in the left sidebar and select new support request.
  • Azure Portal VM Selection
  • Follow the on screen instructions.
  • Azure Portal VM Selection

General recommendations

We highly suggest the following for using the GPU instances:

  • Develop and debug your code locally and use scp to copy your code to the VM to run for the long training steps.
  • Save your work often and keep a local copy.
  • Be mindful of when your instance is running and shut it off when you are not actively using it.

Releases

No releases published

Packages

No packages published