From 4b305983465be7429129d5f89287ae7dc7b91952 Mon Sep 17 00:00:00 2001 From: Jake Lishman Date: Thu, 21 Dec 2023 10:49:00 +0000 Subject: [PATCH] Remove errant algorithms test file (#11440) This seems to have been missed during gh-11086, which removed all the other test files. It hasn't been causing test-collection failures because the `test/python/algorithms/__init__.py` file was correctly removed, so this directory did not count as a package. --- .../algorithms/test_skip_qobj_validation.py | 148 ------------------ 1 file changed, 148 deletions(-) delete mode 100644 test/python/algorithms/test_skip_qobj_validation.py diff --git a/test/python/algorithms/test_skip_qobj_validation.py b/test/python/algorithms/test_skip_qobj_validation.py deleted file mode 100644 index 4ebf8a0fb7b0..000000000000 --- a/test/python/algorithms/test_skip_qobj_validation.py +++ /dev/null @@ -1,148 +0,0 @@ -# This code is part of Qiskit. -# -# (C) Copyright IBM 2019, 2023. -# -# 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. - -"""Test Skip Qobj Validation""" - -import unittest -from test.python.algorithms import QiskitAlgorithmsTestCase -from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister -from qiskit import BasicAer -from qiskit.utils import QuantumInstance -from qiskit.exceptions import QiskitError - - -def _compare_dict(dict1, dict2): - equal = True - for key1, value1 in dict1.items(): - if key1 not in dict2: - equal = False - break - if value1 != dict2[key1]: - equal = False - break - return equal - - -class TestSkipQobjValidation(QiskitAlgorithmsTestCase): - """Test Skip Qobj Validation""" - - def setUp(self): - super().setUp() - self.random_seed = 10598 - - # ┌───┐ ░ ┌─┐ ░ - # q0_0: ┤ H ├──■───░─┤M├─░──── - # └───┘┌─┴─┐ ░ └╥┘ ░ ┌─┐ - # q0_1: ─────┤ X ├─░──╫──░─┤M├ - # └───┘ ░ ║ ░ └╥┘ - # c0: 2/══════════════╩═════╩═ - # 0 1 - qr = QuantumRegister(2) - cr = ClassicalRegister(2) - qc = QuantumCircuit(qr, cr) - qc.h(qr[0]) - qc.cx(qr[0], qr[1]) - # Ensure qubit 0 is measured before qubit 1 - qc.barrier(qr) - qc.measure(qr[0], cr[0]) - qc.barrier(qr) - qc.measure(qr[1], cr[1]) - - self.qc = qc - self.backend = BasicAer.get_backend("qasm_simulator") - - def test_wo_backend_options(self): - """without backend options test""" - with self.assertWarns(DeprecationWarning): - quantum_instance = QuantumInstance( - self.backend, - seed_transpiler=self.random_seed, - seed_simulator=self.random_seed, - shots=1024, - ) - # run without backend_options and without noise - res_wo_bo = quantum_instance.execute(self.qc).get_counts(self.qc) - self.assertGreaterEqual(quantum_instance.time_taken, 0.0) - quantum_instance.reset_execution_results() - quantum_instance.skip_qobj_validation = True - res_wo_bo_skip_validation = quantum_instance.execute(self.qc).get_counts(self.qc) - - self.assertGreaterEqual(quantum_instance.time_taken, 0.0) - quantum_instance.reset_execution_results() - self.assertTrue(_compare_dict(res_wo_bo, res_wo_bo_skip_validation)) - - def test_w_backend_options(self): - """with backend options test""" - # run with backend_options - with self.assertWarns(DeprecationWarning): - quantum_instance = QuantumInstance( - self.backend, - seed_transpiler=self.random_seed, - seed_simulator=self.random_seed, - shots=1024, - backend_options={"initial_statevector": [0.5, 0.5, 0.5, 0.5]}, - ) - res_w_bo = quantum_instance.execute(self.qc).get_counts(self.qc) - self.assertGreaterEqual(quantum_instance.time_taken, 0.0) - quantum_instance.reset_execution_results() - quantum_instance.skip_qobj_validation = True - res_w_bo_skip_validation = quantum_instance.execute(self.qc).get_counts(self.qc) - - self.assertGreaterEqual(quantum_instance.time_taken, 0.0) - quantum_instance.reset_execution_results() - self.assertTrue(_compare_dict(res_w_bo, res_w_bo_skip_validation)) - - def test_w_noise(self): - """with noise test""" - # build noise model - # Asymmetric readout error on qubit-0 only - try: - from qiskit.providers.aer.noise import NoiseModel - from qiskit_aer import Aer - - self.backend = Aer.get_backend("qasm_simulator") - - except ImportError as ex: - self.skipTest(f"Aer doesn't appear to be installed. Error: '{str(ex)}'") - return - - probs_given0 = [0.9, 0.1] - probs_given1 = [0.3, 0.7] - noise_model = NoiseModel() - noise_model.add_readout_error([probs_given0, probs_given1], [0]) - - with self.assertWarns(DeprecationWarning): - quantum_instance = QuantumInstance( - self.backend, - seed_transpiler=self.random_seed, - seed_simulator=self.random_seed, - shots=1024, - noise_model=noise_model, - ) - res_w_noise = quantum_instance.execute(self.qc).get_counts(self.qc) - quantum_instance.skip_qobj_validation = True - res_w_noise_skip_validation = quantum_instance.execute(self.qc).get_counts(self.qc) - - self.assertTrue(_compare_dict(res_w_noise, res_w_noise_skip_validation)) - - with self.assertWarns(DeprecationWarning): - # BasicAer should fail: - with self.assertRaises(QiskitError): - _ = QuantumInstance(BasicAer.get_backend("qasm_simulator"), noise_model=noise_model) - - with self.assertRaises(QiskitError): - quantum_instance = QuantumInstance(BasicAer.get_backend("qasm_simulator")) - quantum_instance.set_config(noise_model=noise_model) - - -if __name__ == "__main__": - unittest.main()