You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks to the modular nature of `hydra` you can reuse many of our config settings for your own experiments with Graphium.
113
99
114
100
115
-
## First Time Running on IPUs
116
-
For new IPU developers this section helps provide some more explanation on how to set up an environment to use Graphcore IPUs with Graphium.
117
-
118
-
```bash
119
-
# Set up a virtual environment as normal
120
-
mkdir ~/.venv # Create the folder for the environment
121
-
python3 -m venv ~/.venv/graphium_ipu # Create the environment
122
-
source~/.venv/graphium_ipu/bin/activate # Activate the environment
123
-
124
-
python3 -m pip install --upgrade pip
125
-
# We can download the Poplar SDK directly using `wget` - more details on the various Graphcore downloads can be found here `https://www.graphcore.ai/downloads`
126
-
127
-
# NOTE: For simplicity this will download the SDK directly where you run this command, we recommend doing this outside the Graphium directory.
128
-
# Make sure to download the right file according to your operating system
0 commit comments