Skip to main content

torch compatibility layer

Project description

Current PyPi Version Supported Python Versions codecov docs tests style

pip install torchcompat

Features

  • Provide a super set implementation of pytorch device interface to enable code to run seamlessly between different accelerators.

  • Identify uniquely devices

import torchcompat.core as accelerator

# on  cuda accelerator == torch.cuda
# on  rocm accelerator == torch.cuda
# on   xpu accelerator == torch.xpu
# on gaudi accelerator == ...

assert accelerator.is_available() == true
assert accelerator.device_name in ('xpu', 'cuda', "hpu")           # rocm is seen as cuda by pytorch
assert accelerator.device_string(0) == "cuda:0" or "xpu:0" or "hpu:0"
assert accelerator.fetch_device(0) == torch.device("cuda:0")


accelerator.set_enable_tf32(true) # toggle the right flags for each backend

Example

example here

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torchcompat-1.1.1.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

torchcompat-1.1.1-py3-none-any.whl (8.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page