PyTorch Quantum Machine Learning with cuQuantum - Fast Adjoint Differentiation
Project description
torchqml
PyTorch Quantum Machine Learning with cuQuantum - Fast Adjoint Differentiation
Features
- Adjoint Differentiation: O(G) gradient calculation using cuQuantum's
custatevecand optimized C++ kernels. - PyTorch Native: Fully integrated with
torch.autogradandtorch.nn. - High Performance: Custom C++/CUDA extension reusing cuStateVec/cuBLAS handles for minimize overhead.
Performance
TorchQML outperforms PennyLane's lightning.gpu backend significantly on NVIDIA GPUs (measured on T4):
| Qubits | Layers | TorchQML (ms) | PennyLane (ms) | Speedup |
|---|---|---|---|---|
| 4 | 5 | 5.72 | 16.99 | 3.0x |
| 8 | 10 | 13.18 | 48.69 | 3.7x |
| 12 | 10 | 24.29 | 69.65 | 2.9x |
Installation
pip install .
Usage
import torch
import torchqml as tq
# Build circuit
qc = tq.QuantumCircuit(2)
qc.h(0)
qc.ry(0, param_index=0)
qc.cx(0, 1)
# Parameters
params = torch.tensor([[0.5]], requires_grad=True)
# Expectation
exp_val = qc.expectation(params, tq.Z(0))
# Backward
exp_val.backward()
print(params.grad)
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
torchqml-0.1.6.tar.gz
(58.0 kB
view details)
File details
Details for the file torchqml-0.1.6.tar.gz.
File metadata
- Download URL: torchqml-0.1.6.tar.gz
- Upload date:
- Size: 58.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb583e470e17eb091586145f7dde4168f45d4746e8fe0aea0bdae47ed9993dd5
|
|
| MD5 |
b1f80a7be1c386188c8c4e7f4f6e061c
|
|
| BLAKE2b-256 |
66808a821f2ccaef5570464ded8a0171a822cfb21f49695b145795dfe7b3d0dd
|