Example #1
0
 def test_grovers_default_basis_gates(self):
     """Test grovers circuits compiling to backend default basis_gates."""
     shots = 2000
     circuits = ref_algorithms.grovers_circuit(final_measure=True,
                                               allow_sampling=True)
     targets = ref_algorithms.grovers_counts(shots)
     qobj = compile(circuits, self.SIMULATOR, shots=shots)
     result = self.SIMULATOR.run(qobj).result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
 def test_grovers_minimal_basis_gates(self):
     """Test grovers circuits compiling to U,CX"""
     shots = 2000
     circuits = ref_algorithms.grovers_circuit(final_measure=True,
                                               allow_sampling=True)
     targets = ref_algorithms.grovers_counts(shots)
     job = execute(circuits, QasmSimulator(), shots=shots, basis_gates='U,CX')
     result = job.result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
Example #3
0
 def test_grovers_waltz_basis_gates(self):
     """Test grovers gate circuits compiling to u1,u2,u3,cx"""
     shots = 2000
     circuits = ref_algorithms.grovers_circuit(final_measure=True,
                                               allow_sampling=True)
     targets = ref_algorithms.grovers_counts(shots)
     qobj = compile(circuits,
                    self.SIMULATOR,
                    shots=shots,
                    basis_gates=['u1', 'u2', 'u3', 'cx'])
     result = self.SIMULATOR.run(qobj).result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
 def test_grovers_default_basis_gates(self):
     """Test grovers circuits compiling to backend default basis_gates."""
     shots = 2000
     circuits = ref_algorithms.grovers_circuit(final_measure=True,
                                               allow_sampling=True)
     qobj = qiskit_compile(circuits, QasmSimulator(), shots=shots)
     targets = ref_algorithms.grovers_counts(shots)
     job = QasmSimulator().run(qobj,
                               backend_options={
                                   "method": "extended_stabilizer",
                                   "extended_stabilizer_mixing_time": 100,
                               })
     result = job.result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)