You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Qiskit-Aer uses QObj as the common representation of simulation targets.
However, as #1660 mentioned, recent QObj does not support latest features of QuantumCircuit.
Also, converting QObj is an apparent overhead because it is converted into Circuit struct of C++ in pybind.
By providing own assemble() to convert QuantumCircuit to Circuit struct of C++, we will get performance and flexibility for its specification.
This new feature will also resolve an issue of #1652.
The text was updated successfully, but these errors were encountered:
What is the expected behavior?
Currently Qiskit-Aer uses
QObj
as the common representation of simulation targets.However, as #1660 mentioned, recent
QObj
does not support latest features ofQuantumCircuit
.Also, converting
QObj
is an apparent overhead because it is converted intoCircuit
struct of C++ in pybind.By providing own
assemble()
to convertQuantumCircuit
toCircuit
struct of C++, we will get performance and flexibility for its specification.This new feature will also resolve an issue of #1652.
The text was updated successfully, but these errors were encountered: