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
Qiskit has recently introduced "Primitives" (https://medium.com/qiskit/what-are-qiskit-primitives-9bf63c1eacc7) as a new way to package certain tasks and to shield users from some implementation details.
We want to implement a DDSIM version of these primitives (Sampler and Estimator).
Describe the solution you'd like
To build our version of the QIskit Primitives we need to add the following features:
Creating a DDSIM version of one of the qiskit primitives, which is the
"Sampler".
Code is inspired in the BackendSampler class from Qiskit
https://qiskit.org/documentation/stubs/qiskit.primitives.BackendSampler.html,
which in turn is a child class of the more general BaseSampler class
https://qiskit.org/documentation/stubs/qiskit.primitives.BaseSampler.html
.
- [x] Adapt BackendSampler class to our DDSIM backends (Only the ones
that are compatible with this functionality)
- [x] Create suitable tests for this new feature
- [x] Document this feature
This is the second step towards solving issue #295
---------
Signed-off-by: burgholzer <burgholzer@me.com>
Co-authored-by: Lukas Burgholzer <burgholzer@me.com>
What's the problem this feature will solve?
Qiskit has recently introduced "Primitives" (https://medium.com/qiskit/what-are-qiskit-primitives-9bf63c1eacc7) as a new way to package certain tasks and to shield users from some implementation details.
We want to implement a DDSIM version of these primitives (Sampler and Estimator).
Describe the solution you'd like
To build our version of the QIskit Primitives we need to add the following features:
The text was updated successfully, but these errors were encountered: