spinoza
spinoza copied to clipboard
Consider implementing the Qiskit backend interface
Consider adapting the spinoza_to_qiskit.py
example into a proper Qiskit backend. This would allow users to follow the conventional Qiskit execution pattern.
from qiskit import QuantumCircuit, transpile
from spynoza import Simulator # qiskit.providers.BackendV2 object
sim = Simulator()
qc = QuantumCircuit(...)
tqc = transpile(qc, sim)
sim.run(tqc)
See Qiskit's Backend documentation for more information, but also feel free to contact us if you have any questions or need any support.