I’ve had luck getting GPUs quickly on graham.computecanada.ca, so I suggest you use something else.

On the login node:

Previously I was explicitly specifying a new StdEnv, but for now, the latest one is the default. This is not necessary right now but for future reference.

1
module load StdEnv/2023

Figure grab the least stale python

1
module spider python

Grab a specific version

1
module load python/3.11.5

Or if you’re feeling lucky, I usually just

Create a Python virtual environment, I’ll name it jaxenv

1
python -m venv ~/jaxenv 

Activate and update it, using --no-index goes after cluster-built wheels, preventing dependency hell.

1
2
3
4
5
source ~/jaxenv/bin/activate

python -m pip install --upgrade pip --no-index

python -m pip install jax --no-index

Get an interactive session with a GPU just to kick the tires.

1
salloc --time=0:20:00 --mem=3500 --gres=gpu:1 --account=def-rsadve

Once you’re in that worker’s shell

1
2
3
source ~/jaxenv/bin/activate

python

Once you’ve got an interactive Python session

1
2
from jax.lib import xla_bridge
print(xla_bridge.get_backend().platform)

should say GPU.

Then sometimes I’ll run a little GPU code to see if anything exciting blows up.

In an interactive session with a GPU attached:

1
2
3
4
import jax.numpy as jnp
from jax import grad, jit, vmap, random
x = random.normal(key, (3000,3000), dtype=jnp.float32)
jnp.dot(x, x.T).block_until_ready() # runs on the GPU