Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e8b67a9
template lib clifford templates
grageragarces Jun 16, 2022
70ded40
. import clifford update
grageragarces Jun 16, 2022
8e20a6b
nct templates up to 6b_1
grageragarces Jun 16, 2022
5f604e2
nct templates up to template_nct_7a_1
grageragarces Jun 16, 2022
d6e312d
all nct templates added
grageragarces Jun 16, 2022
ab0b031
all templates added
grageragarces Jun 16, 2022
f5ee9e9
template_library doc
grageragarces Jun 16, 2022
203687f
Merge branch 'main' into main
grageragarces Jun 17, 2022
f7b5966
Rename template_library to template_library.py
grageragarces Jun 17, 2022
babc54e
Rename templates_library.py to template_library.py
grageragarces Jun 17, 2022
e75adb2
importing templates lib
grageragarces Jun 17, 2022
365894f
tox -eblack changes
grageragarces Jun 17, 2022
a2d9c09
Merge branch 'main' into main
grageragarces Jun 17, 2022
a2ac4c3
Merge branch 'main' into main
grageragarces Jun 18, 2022
8ed1493
import template lib
grageragarces Jun 19, 2022
293f468
slight modifications to the test
grageragarces Nov 16, 2022
0c0f970
documentation init
grageragarces Nov 16, 2022
92450b7
changes import method
grageragarces Nov 16, 2022
8fac07c
changes template_library class struc
grageragarces Nov 16, 2022
4d9cd20
fixing conflicts (import related)
grageragarces Dec 16, 2022
ce131c8
fixing import library bug
grageragarces Dec 16, 2022
eb433e9
fixing bug import templatelib
grageragarces Dec 16, 2022
a00f2bb
fixing bug imports
grageragarces Dec 16, 2022
ae2931a
small change imports
grageragarces Dec 16, 2022
dbd8a2b
minor change conflict
grageragarces Dec 16, 2022
46bdd5f
update changes init
grageragarces Dec 16, 2022
b48ae78
identation change
grageragarces Dec 16, 2022
e674e4f
identation modif
grageragarces Dec 16, 2022
ccc88f1
Merge branch 'main' into main
javabster Jan 5, 2023
738af85
make black reformated
grageragarces Feb 10, 2023
9568352
Merge branch 'main' into main
1ucian0 Feb 23, 2023
177375d
black reformat
grageragarces Feb 27, 2023
a346919
Merge branch 'main' of https://github.com/mgg39/qiskit-terra
grageragarces Feb 27, 2023
e0e8cf8
Merge branch 'main' into main
1ucian0 May 11, 2023
1d76cb3
fixing __init__ comment
grageragarces May 14, 2023
edf8bdb
Merge branches 'main', 'main' and 'main' of https://github.com/mgg39/…
grageragarces Jun 8, 2023
a2ef9fe
Merge branch 'main' into main
1ucian0 Jun 30, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions qiskit/circuit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@
InstructionSet
Operation
EquivalenceLibrary
TemplateLibrary

Control Flow Operations
-----------------------
Expand Down
11 changes: 11 additions & 0 deletions qiskit/circuit/library/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@
templates.nct.template_nct_9d_9
templates.nct.template_nct_9d_10


Clifford template circuits
--------------------------

Expand Down Expand Up @@ -487,6 +488,15 @@
rzx_zz2
rzx_zz3

Template library
--------------------------

Existing Template circuits.

.. autosummary::
:toctree: ../stubs/
TemplateLibrary

"""

from .standard_gates import *
Expand Down Expand Up @@ -559,3 +569,4 @@
from .grover_operator import GroverOperator
from .phase_oracle import PhaseOracle
from .evolved_operator_ansatz import EvolvedOperatorAnsatz
from .standard_gates.templates import TemplateLibrary
Loading