示例#1
0
 def test_s_gate_deterministic_default_basis_gates(self):
     """Test s-gate circuits compiling to backend default basis_gates."""
     circuits = ref_1q_clifford.s_gate_circuits_deterministic(final_measure=False)
     targets = ref_1q_clifford.s_gate_statevector_deterministic()
     job = execute(circuits, StatevectorSimulator(), shots=1)
     result = job.result()
     self.assertTrue(getattr(result, 'success', False))
     self.compare_statevector(result, circuits, targets)
示例#2
0
 def test_s_gate_deterministic_minimal_basis_gates(self):
     """Test s-gate gate circuits compiling to u3,cx"""
     circuits = ref_1q_clifford.s_gate_circuits_deterministic(final_measure=False)
     targets = ref_1q_clifford.s_gate_statevector_deterministic()
     job = execute(circuits, StatevectorSimulator(), shots=1, basis_gates=['u3', 'cx'])
     result = job.result()
     self.is_completed(result)
     self.compare_statevector(result, circuits, targets)
示例#3
0
 def test_s_gate_deterministic_waltz_basis_gates(self):
     """Test s-gate gate circuits compiling to u1,u2,u3,cx"""
     circuits = ref_1q_clifford.s_gate_circuits_deterministic(final_measure=False)
     targets = ref_1q_clifford.s_gate_statevector_deterministic()
     job = execute(circuits, StatevectorSimulator(), shots=1,
                   basis_gates=['u1', 'u2', 'u3', 'cx'])
     result = job.result()
     self.assertTrue(getattr(result, 'success', False))
     self.compare_statevector(result, circuits, targets)