Closed obliviateandsurrender closed 4 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 100.00%. Comparing base (
a5f0f5a
) to head (cb9f811
). Report is 14 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Context: Add support for converting Qiskit's noise models to PennyLane's noise models.
Description of the Change:
noise_models.py
contains helper methods for converting a Qiskit'sNoiseModel
object to a list of PennyLane Channel objects that are constructed based on their Kraus representation obtained via Qiskit.converter.py
contains theload_noise_model
method, which accepts a Qiskit noise model along with some mentioned keyword arguments and returns the corresponding PennyLane noise model.Benefits: Noise model construction can be done in PennyLane from a Qiskit one.
Possible Drawbacks:
QubitChannels
will only give Kraus representation and not any information on the corresponding error.Related GitHub Issues: [sc-68045]