Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add papers #272

Merged
merged 3 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions docs/papers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
Papers using M3
###############

#. "Entanglement teleportation along a regenerating hamster-wheel graph state", Haiyue Kang, John F. Kam, Gary J. Mooney, Lloyd C. L. Hollenberg, `arXiv:2411.13060 <https://doi.org/10.48550/arXiv.2411.13060>`_.

#. "Ptychographic estimation of pure multiqubit states in a quantum device", Warley M. S. Alves, Leonardo Neves, `APL Quantum 1, 046115 (2024) <https://doi.org/10.1063/5.0236968>`_.

#. "Reducing PEC Overhead by Pauli Error Propagation", Timon Scheiber, Paul Haubenwallner, Matthias Heller, `arXiv:2412.01311 <https://doi.org/10.48550/arXiv.2412.01311>`_.

#. "QSRA: A QPU Scheduling and Resource Allocation Approach for Cloud-Based Quantum Computing", Binhan Lu, Zhaoyun Chen, Yuchun Wu, `arXiv:2411.05283 <https://doi.org/10.48550/arXiv.2411.05283>`_.

#. "Towards quantum computing Feynman diagrams in hybrid qubit-oscillator devices", S. Varona, S. Saner, O. Băzăvan, G. Araneda, G. Aarts, A. Bermudez, `arXiv:2411.05092 <https://doi.org/10.48550/arXiv.2411.05092>`_.
Expand Down
4 changes: 1 addition & 3 deletions mthree/test/test_grouping.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ def test_groupings1():
qc.cx(0, range(1, 4))
qc.measure_all()

trans_circs = transpile(
[qc] * 2, backend, optimization_level=3, approximation_degree=0
)
trans_circs = transpile([qc] * 2, backend, optimization_level=3)
mappings = mthree.utils.final_measurement_mapping(trans_circs)

job = backend.run(trans_circs, shots=10000)
Expand Down
Loading