From f39f59e1a2493ecc3b85597434b5c0b06e6abc91 Mon Sep 17 00:00:00 2001 From: cqc-melf <70640934+cqc-melf@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:14:38 +0100 Subject: [PATCH] Update/docs (#410) * remove QIR warning * add section about QCsupport@quantinuum.com * update doc landing page --- README.md | 4 ++++ docs/intro.txt | 2 ++ pytket/extensions/quantinuum/backends/quantinuum.py | 3 --- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 808d459c..eea82d14 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,10 @@ Please file bugs and feature requests on the Github There is also a Slack channel for discussion and support. Click [here](https://tketusers.slack.com/join/shared_invite/zt-18qmsamj9-UqQFVdkRzxnXCcKtcarLRA#/shared-invite/email) to join. +## Hardware Support + +In case of questions about the hardware you can contact QCsupport@quantinuum.com. + ## Development To install this extension in editable mode, simply change to this directory, and run: diff --git a/docs/intro.txt b/docs/intro.txt index 98c45cd7..c3e527f7 100644 --- a/docs/intro.txt +++ b/docs/intro.txt @@ -27,6 +27,8 @@ and Windows. To install, run: **Web Interface:** https://um.qapi.quantinuum.com/ +In case of questions about the hardware you can get in contact with the team sending an email to QCsupport@quantinuum.com. + Available Backends ================== The pytket-quantinuum extension allows the user to access the following quantum devices, emulators and syntax checkers. These backends can be initialised by passing the device name as a string to the ``QuantinuumBackend`` class. The available devices are: diff --git a/pytket/extensions/quantinuum/backends/quantinuum.py b/pytket/extensions/quantinuum/backends/quantinuum.py index c5600245..ffc8d0e7 100644 --- a/pytket/extensions/quantinuum/backends/quantinuum.py +++ b/pytket/extensions/quantinuum/backends/quantinuum.py @@ -1028,9 +1028,6 @@ def process_circuits( results_selection.append((name, i)) else: assert language == Language.QIR - warnings.warn( - "Support for Language.QIR is experimental; this may fail!" - ) for name, count in Counter(bit.reg_name for bit in c0.bits).items(): for i in range(count): results_selection.append((name, i))