def test_teleport_default_basis_gates(self):
     """Test teleport circuits compiling to backend default basis_gates."""
     shots = 2000
     circuits = ref_algorithms.teleport_circuit()
     targets = ref_algorithms.teleport_counts(shots)
     job = execute(circuits, self.SIMULATOR, shots=shots)
     result = job.result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
Пример #2
0
 def test_teleport_default_basis_gates(self):
     """Test teleport circuits compiling to backend default basis_gates."""
     shots = 4000
     circuits = ref_algorithms.teleport_circuit()
     targets = ref_algorithms.teleport_counts(shots)
     job = execute(circuits, self.SIMULATOR, shots=shots)
     result = job.result()
     self.assertTrue(getattr(result, 'success', False))
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
Пример #3
0
 def test_teleport_default_basis_gates(self):
     """Test teleport circuits compiling to backend default basis_gates."""
     shots = 1000
     circuits = ref_algorithms.teleport_circuit()
     qobj = assemble(circuits, QasmSimulator(), shots=shots)
     targets = ref_algorithms.teleport_counts(shots)
     job = QasmSimulator().run(qobj, **self.BACKEND_OPTS)
     result = job.result()
     self.assertSuccess(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
 def test_teleport_default_basis_gates(self):
     """Test teleport circuits compiling to backend default basis_gates."""
     shots = 1000
     circuits = ref_algorithms.teleport_circuit()
     qobj = assemble(circuits, QasmSimulator(), shots=shots)
     targets = ref_algorithms.teleport_counts(shots)
     job = QasmSimulator().run(
         qobj, backend_options={"method": "extended_stabilizer"})
     result = job.result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
 def test_teleport_minimal_basis_gates(self):
     """Test teleport gate circuits compiling to u3,cx"""
     shots = 4000
     circuits = ref_algorithms.teleport_circuit()
     targets = ref_algorithms.teleport_counts(shots)
     job = execute(
         circuits, self.SIMULATOR, shots=shots, basis_gates=['u3', 'cx'],
         **self.BACKEND_OPTS)
     result = job.result()
     self.assertSuccess(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
Пример #6
0
 def test_teleport_default_basis_gates(self):
     """Test teleport circuits compiling to backend default basis_gates."""
     shots = 4000
     circuits = ref_algorithms.teleport_circuit()
     targets = ref_algorithms.teleport_counts(shots)
     job = execute(circuits,
                   self.SIMULATOR,
                   shots=shots,
                   backend_options=self.BACKEND_OPTS)
     result = job.result()
     self.assertSuccess(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
 def test_teleport_waltz_basis_gates(self):
     """Test teleport gate circuits compiling to u1,u2,u3,cx"""
     shots = 2000
     circuits = ref_algorithms.teleport_circuit()
     targets = ref_algorithms.teleport_counts(shots)
     job = execute(circuits,
                   self.SIMULATOR,
                   shots=shots,
                   basis_gates=['u1', 'u2', 'u3', 'cx'])
     result = job.result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
Пример #8
0
 def test_teleport_minimal_basis_gates(self):
     """Test teleport gate circuits compiling to u3,cx"""
     shots = 2000
     circuits = ref_algorithms.teleport_circuit()
     targets = ref_algorithms.teleport_counts(shots)
     qobj = compile(circuits,
                    self.SIMULATOR,
                    shots=shots,
                    basis_gates=['u3', 'cx'])
     result = self.SIMULATOR.run(qobj).result()
     self.is_completed(result)
     self.compare_counts(result, circuits, targets, delta=0.05 * shots)
Пример #9
0
    def _test_teleport(self, **options):
        """Test teleport circuits."""
        shots = 4000
        backend = self.backend(**options)

        circuits = ref_algorithms.teleport_circuit()
        targets = ref_algorithms.teleport_counts(shots)
        circuits = transpile(circuits, backend)
        job = backend.run(circuits, shots=shots)
        result = job.result()

        self.assertSuccess(result)
        self.compare_counts(result, circuits, targets, delta=0.05 * shots)