Skip to main content

Cross platform circuit transpiler

Project description

abraxas

A tiny library to transpile quantum circuits. The goal is to speed up the time it takes to convert simple circuits across languages fast. Anything beyond a certain complexity should be written in the respective languages directly.

QiskitCudaQPennylaneCirqTKetQuilBraket

Install

While not explicity marked as required, it will be convenient to have qiskit installed since some functions use it to generate qasm code.

pip install abrax

Examples

toPennylane

from qiskit import QuantumCircuit, Parameter
from abrax import toPenny, toQasm
import pennylane as qml

qc = QuantumCircuit(3)
p = Parameter('x')
qc.h([0, 1, 2])
qc.cx(0, 2)
qc.rx(0, 0)
qc.cx(1, 2)
qc.ry(p, 2)

qasm = toQasm(qc)
dev = qml.device("default.qubit", wires=2)
circuit = toPenny(qasm, dev) # pennylane needs 'dev'
# print(qml.draw(circuit)())
# 0: ──H─╭X──RX(0.00)───────────────┤  Probs
# 1: ──H─│────────────╭X────────────┤  Probs
# 2: ──H─╰●──X────────╰●──RY(x)─────┤  Probs

Supported conversions:

graph LR
  subgraph Circuit
    direction LR
    IR[Pseudo-QASM]
    IR2[QASM]
  end
  A0[Qiskit] --> Circuit
  B0[Pennylane] --> Circuit
  C0[Cirq] --> Circuit
  D0[TKet] --> Circuit
  E0[Quil] --> Circuit
  F0["CudaQ (half)"] --> Circuit
  G0[Braket] --> Circuit

  Circuit --> A1[Qiskit]
  Circuit --> B1[Pennylane]
  Circuit --> C1[Cirq]
  Circuit --> D1[TKet]
  Circuit --> E1[Quil]
  Circuit --> F1[CudaQ]
  Circuit --> G1[Braket]

Known Issues

  • Don't parameterise 'exponent' in cirq for variational circuits. Else it will hard code in some random value. As a slow hack you can run the transpiler in a for loop everytime the exponent/rads change.
  • Compiling "TO" pyquil isn't supported yet, I don't want to write a full generator loop
  • CudaQ cannot do variational gates "toQasm" and writing a parser for QIR/MLIR is extremely expensive

Supported Frameworks

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

abrax-1.1.0.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

abrax-1.1.0-py3-none-any.whl (9.3 kB view details)

Uploaded Python 3

File details

Details for the file abrax-1.1.0.tar.gz.

File metadata

  • Download URL: abrax-1.1.0.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for abrax-1.1.0.tar.gz
Algorithm Hash digest
SHA256 8526a48c5f115035aa733f678dc89fc7f041fa7030c143bf4c64c5691b7b628c
MD5 3666ff5b78585732358ece7a07e39c99
BLAKE2b-256 629b4268d699d7b24d43d483b008142c729579e4e942c3f089e715ed614ef6be

See more details on using hashes here.

File details

Details for the file abrax-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: abrax-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 9.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for abrax-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 afcf822e647962796d5314e2eef6f1e67e756cf0d99ccf348d52da8b2972e528
MD5 8533d0a3c85ae3943d620f85795692d2
BLAKE2b-256 9dd6a41933d6d7ae93e86ed5e9c98ffdb1db90b12c3ed8fb1cf5773806c01e71

See more details on using hashes here.

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