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.7.tar.gz
(58.3 kB
view details)
File details
Details for the file torchqml-0.1.7.tar.gz.
File metadata
- Download URL: torchqml-0.1.7.tar.gz
- Upload date:
- Size: 58.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
154f430849ef00e8055694f13688a6990efc339889f37fbf3f13f236adfd228d
|
|
| MD5 |
69716b283d66cffb32bc8c958752f635
|
|
| BLAKE2b-256 |
cb1263a5917baa1a2a2c3f1704be7eeda9bd390a872b0116583c27c2f980399f
|