From b10d7cc193f61ccf0382615f186af48ea4fbbf35 Mon Sep 17 00:00:00 2001 From: Alexandre Thomas Date: Wed, 11 Dec 2024 18:14:11 +0100 Subject: [PATCH] fix: add missing native instructions for logical targets Our logical processors are expected to support the S (and S adj.) gates in their basis gate set. This commits add them to the basis gate set, so that we don't try to transpile them. --- qiskit_alice_bob_provider/processor/logical_cat.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qiskit_alice_bob_provider/processor/logical_cat.py b/qiskit_alice_bob_provider/processor/logical_cat.py index b4002a6..6d136d1 100644 --- a/qiskit_alice_bob_provider/processor/logical_cat.py +++ b/qiskit_alice_bob_provider/processor/logical_cat.py @@ -42,6 +42,8 @@ 't', 'tdg', 'h', + 's', + 'sdg', ]