Skip to content

Commit

Permalink
feat(mitigation): add TwoQubitPauliTwirlPass class (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero committed Mar 26, 2024
1 parent 35ab59f commit 671fd04
Show file tree
Hide file tree
Showing 4 changed files with 906 additions and 0 deletions.
19 changes: 19 additions & 0 deletions quantum_enablement/mitigation/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This code is part of Qiskit.
#
# (C) Copyright IBM 2024.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""Error mitigation tools and techniques."""

from ._twirling import TwoQubitPauliTwirlPass

__all__ = [
"TwoQubitPauliTwirlPass",
]
Loading

0 comments on commit 671fd04

Please sign in to comment.