Exemple #1
0
 def test_tdg_gate_deterministic_default_basis_gates(self):
     """Test tdg-gate circuits compiling to backend default basis_gates."""
     circuits = ref_non_clifford.tdg_gate_circuits_deterministic(final_measure=False)
     targets = ref_non_clifford.tdg_gate_statevector_deterministic()
     job = execute(circuits, StatevectorSimulator(), shots=1)
     result = job.result()
     self.assertTrue(getattr(result, 'success', False))
     self.compare_statevector(result, circuits, targets)
Exemple #2
0
 def test_tdg_gate_deterministic_minimal_basis_gates(self):
     """Test tdg-gate gate circuits compiling to u3,cx"""
     circuits = ref_non_clifford.tdg_gate_circuits_deterministic(final_measure=False)
     targets = ref_non_clifford.tdg_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)
Exemple #3
0
 def test_tdg_gate_deterministic_waltz_basis_gates(self):
     """Test tdg-gate gate circuits compiling to u1,u2,u3,cx"""
     circuits = ref_non_clifford.tdg_gate_circuits_deterministic(final_measure=False)
     targets = ref_non_clifford.tdg_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)