-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Reorder result bits from real devices #430
Changes from 2 commits
6ba2230
8160725
b658084
5bc7fba
5e99aed
9edaf1a
14aa80c
08edcd1
832734c
661286e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# -*- coding: utf-8 -*- | ||
# pylint: disable=invalid-name,no-value-for-parameter,broad-except | ||
|
||
# Copyright 2018 IBM RESEARCH. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ============================================================================= | ||
"""Tests for bit reordering fix.""" | ||
|
||
import unittest | ||
import qiskit as qk | ||
from qiskit.wrapper import register, available_backends, get_backend, execute | ||
from .common import requires_qe_access, QiskitTestCase | ||
|
||
|
||
def lowest_pending_jobs(list_of_backends): | ||
"""Returns the backend with lowest pending jobs.""" | ||
by_pending_jobs = sorted(list_of_backends, | ||
key=lambda x: get_backend(x).status['pending_jobs']) | ||
return by_pending_jobs[0] | ||
|
||
|
||
@requires_qe_access | ||
def _authenticate(QE_TOKEN, QE_URL): | ||
sim_backend = 'local_qiskit_simulator' | ||
try: | ||
register(QE_TOKEN, QE_URL) | ||
real_backends = available_backends({'simulator': False}) | ||
real_backend = lowest_pending_jobs(real_backends) | ||
except Exception: | ||
real_backend = None | ||
|
||
return sim_backend, real_backend | ||
|
||
|
||
sim, real = _authenticate() | ||
|
||
|
||
@unittest.skipIf(not real, 'no remote device available.') | ||
class TestBitReordering(QiskitTestCase): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you revise these tests? They seem to be raising an Exception intermitently:
when running against
From a practical point of view, they are also a bit problematic: since they depend on a real device, the running time of the tests can be rather large (in my tests, they ranged from 150 to 170 seconds, which is rather large considering that the current running time for all the test suite is ~120 seconds. I'd really like to avoid that one way or the other, by making them opt-in or similar - any ideas? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed in 5e99aed |
||
"""Test QISKit's fix for the ibmq hardware reordering bug. | ||
|
||
The bug will be fixed with the introduction of qobj, | ||
in which case these tests can be used to verify correctness. | ||
""" | ||
def test_basic_reordering(self): | ||
"""a simple reordering within a 2-qubit register""" | ||
q = qk.QuantumRegister(2) | ||
c = qk.ClassicalRegister(2) | ||
circ = qk.QuantumCircuit(q, c) | ||
circ.h(q[0]) | ||
circ.measure(q[0], c[1]) | ||
circ.measure(q[1], c[0]) | ||
|
||
shots = 2000 | ||
result_real = execute(circ, real, {"shots": shots, "timeout": 300}) | ||
result_sim = execute(circ, sim, {"shots": shots}) | ||
counts_real = result_real.get_counts() | ||
counts_sim = result_sim.get_counts() | ||
threshold = 0.1 * shots | ||
self.assertDictAlmostEqual(counts_real, counts_sim, threshold) | ||
|
||
def test_multi_register_reordering(self): | ||
"""a more complicated reordering across 3 registers of different sizes""" | ||
q0 = qk.QuantumRegister(2) | ||
q1 = qk.QuantumRegister(2) | ||
q2 = qk.QuantumRegister(1) | ||
c0 = qk.ClassicalRegister(2) | ||
c1 = qk.ClassicalRegister(2) | ||
c2 = qk.ClassicalRegister(1) | ||
circ = qk.QuantumCircuit(q0, q1, q2, c0, c1, c2) | ||
circ.h(q0[0]) | ||
circ.cx(q0[0], q2[0]) | ||
circ.x(q1[1]) | ||
circ.h(q2[0]) | ||
circ.ccx(q2[0], q1[1], q1[0]) | ||
circ.barrier() | ||
circ.measure(q0[0], c2[0]) | ||
circ.measure(q0[1], c0[1]) | ||
circ.measure(q1[0], c0[0]) | ||
circ.measure(q1[1], c1[0]) | ||
circ.measure(q2[0], c1[1]) | ||
|
||
shots = 4000 | ||
result_real = execute(circ, real, {"shots": shots, "timeout": 300}) | ||
result_sim = execute(circ, sim, {"shots": shots}) | ||
counts_real = result_real.get_counts() | ||
counts_sim = result_sim.get_counts() | ||
threshold = 0.2 * shots | ||
self.assertDictAlmostEqual(counts_real, counts_sim, threshold) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main(verbosity=2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: can you use the fully qualified name (ie.
import qiskit
), for consistency?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in b658084