Lightning support for GraphCore accelerators
Project description
Lightning ⚡ GraphCore
Audience: Users looking to save money and run large models faster using single or multiple IPU devices.
What is an IPU?
The Graphcore Intelligence Processing Unit (IPU), built for Artificial Intelligence and Machine Learning, consists of many individual cores, called tiles, allowing highly parallel computation. Due to the high bandwidth between tiles, IPUs facilitate machine learning loads where parallelization is essential. Because computation is heavily parallelized,
IPUs operate in a different way to conventional accelerators such as CPU/GPUs. IPUs do not require large batch sizes for maximum parallelization, can provide optimizations across the compiled graph and rely on model parallelism to fully utilize tiles for larger models.
IPUs are used to build IPU-PODs, rack-based systems of IPU-Machines for larger workloads. See the IPU Architecture for more information.
See the Graphcore Glossary for the definitions of other IPU-specific terminology.
Installation
pip install -U lightning-graphcore
Run on IPU
To enable PyTorch Lightning to utilize the IPU accelerator, simply provide accelerator="ipu"
parameter to the Trainer class.
To use multiple IPUs set the devices to a number that is a power of 2 (i.e: 2, 4, 8, 16, ...)
from lightning import Trainer
# run on as many IPUs as available by default
trainer = Trainer(accelerator="auto", devices="auto", strategy="auto")
# equivalent to
trainer = Trainer()
# run on one IPU
trainer = Trainer(accelerator="ipu", devices=1)
# run on multiple IPUs
trainer = Trainer(accelerator="ipu", devices=8)
# choose the number of devices automatically
trainer = Trainer(accelerator="ipu", devices="auto")
How to access IPUs
To use IPUs you must have access to a system with IPU devices. To get access see get started.
You must ensure that the IPU system has enabled the PopART and Poplar packages from the SDK. Instructions are in the Get Started guide for your IPU system, on the Graphcore documents portal.
Known limitations
Currently there are some known limitations that are being addressed in the near future to make the experience seamless when moving from different devices.
Please see the MNIST example which displays most of the limitations and how to overcome them till they are resolved.
self.log
is not supported in thetraining_step
,validation_step
,test_step
orpredict_step
. This is due to the step function being traced and sent to the IPU devices.- Since the step functions are traced, branching logic or any form of primitive values are traced into constants. Be mindful as this could lead to errors in your custom code.
- Clipping gradients is not supported.
- It is not possible to use
BatchSampler
in your dataloaders if you are using multiple IPUs. - IPUs handle the data transfer to the device on the host, hence the hooks
ModelHooks.transfer_batch_to_device
andModelHooks.on_after_batch_transfer
do not apply here and if you have overridden any of them, an exception will be raised.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lightning-graphcore-0.1.0rc2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 396e29efb7feff49b7afbe8e9f05e527f3a74ab50fef426ddf9e4488db593ccc |
|
MD5 | d125e96ce133c87623efe3e204155cca |
|
BLAKE2b-256 | ee03815299d180eb1faa3a35aa809606fd64f63100725c8c338d6b27424d0e0b |
Hashes for lightning_graphcore-0.1.0rc2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea1314d7116163c2aa4e95a9b637f49c042598e0511188fdf13fa268ff3ebe05 |
|
MD5 | 3366d53f8ed8ac2976dd8d7cfe6581ef |
|
BLAKE2b-256 | f0b5dcd5b2def6460c8c56686af2e92c502b13dec5c5e8d859e840306181a8ba |