qunicorn_core.core.transpiler.unsafe_transpilers module

class qunicorn_core.core.transpiler.unsafe_transpilers.BraketPythonToBraket

Bases: CircuitTranspiler

cost: ClassVar[int] = 1
source: ClassVar[str] = 'BRAKET-PYTHON'
target: ClassVar[str] = 'BRAKET'
transpile_circuit(circuit: Any) Circuit

Transpile the given circuit to the target format.

unsafe: ClassVar[bool] = True
class qunicorn_core.core.transpiler.unsafe_transpilers.QiskitPythonToQiskit

Bases: CircuitTranspiler

cost: ClassVar[int] = 1
source: ClassVar[str] = 'QISKIT-PYTHON'
target: ClassVar[str] = 'QISKIT'
transpile_circuit(circuit: Any) QuantumCircuit

Transpile the given circuit to the target format.

unsafe: ClassVar[bool] = True
class qunicorn_core.core.transpiler.unsafe_transpilers.QrispPythonToQrisp

Bases: CircuitTranspiler

cost: ClassVar[int] = 1
source: ClassVar[str] = 'QRISP-PYTHON'
target: ClassVar[str] = 'QRISP'
transpile_circuit(circuit: Any) QuantumCircuit

Transpile the given circuit to the target format.

unsafe: ClassVar[bool] = True
class qunicorn_core.core.transpiler.unsafe_transpilers.QuilPythonToQuil

Bases: CircuitTranspiler

cost: ClassVar[int] = 1
source: ClassVar[str] = 'QUIL-PYTHON'
target: ClassVar[str] = 'QUIL'
transpile_circuit(circuit: Any) Program

Transpile the given circuit to the target format.

unsafe: ClassVar[bool] = True