SDK to interact with Kipu Quantum Hub quantum backends.
Project description
Kipu Quantum Hub Quantum SDK
The Kipu Quantum Hub Quantum SDK is for developing quantum circuits using Qiskit to be run on quantum devices provided by the Kipu Quantum Hub. This library is an extension for Qiskit. This means that you are able to seamlessly integrate and reuse your existing Qiskit code, leveraging the power and familiarity of a framework you are already accustomed to.
Getting Started
Check out the following guides on how to get started with Kipu Quantum Hub:
Installation
The package is released on PyPI and can be installed via pip:
pip install --upgrade qhub-quantum
To install a pre-release version, use the following command:
pip install --pre --upgrade qhub-quantum
Usage
Working with Qiskit Backends
You can execute a Qiskit circuit on a selected backend, retrieve its job object, and its results:
from qhub.quantum.sdk import HubQiskitProvider
from qiskit import QuantumCircuit, transpile
# Initialize the provider
provider = HubQiskitProvider()
# Select a backend, full list of backends can be found at https://platform.planqk.de/quantum-backends
backend = provider.get_backend("azure.ionq.simulator")
# Create a Qiskit circuit
circuit = QuantumCircuit(3, 3)
circuit.h(0)
circuit.cx(0, 1)
circuit.cx(1, 2)
circuit.measure(range(3), range(3))
# Transpile the circuit for the selected backend
circuit = transpile(circuit, backend)
# Execute the circuit on the selected backend
job = backend.run(circuit, shots=100)
# Monitor job status and get results
print(f"Status: {job.status()}")
print(f"Result: {job.result()}")
Working with Braket Devices
You can execute a Braket circuit on a selected device, retrieve its task object, and its results:
from braket.circuits import Circuit
from qhub.quantum.sdk import HubBraketProvider
# Select the IonQ Forte device
device = HubBraketProvider().get_device("aws.ionq.forte")
# Create a Braket circuit
circuit = Circuit().h(0).cnot(0, 1).cnot(1, 2)
# Execute the circuit with 100 shots
task = device.run(circuit, 100)
# Monitor task status and get results
print(f"Status: {task.state()}")
print(f"Result: {task.result()}")
Development
To create a new virtual environment, for example, run:
uv venv
uv sync
Then, to activate the environment:
source .venv/bin/activate
Update dependencies and lock files:
uv sync -U
License
Apache-2.0 | Copyright 2023-present Kipu Quantum GmbH
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qhub_quantum-1.4.1.tar.gz.
File metadata
- Download URL: qhub_quantum-1.4.1.tar.gz
- Upload date:
- Size: 113.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79e068423291c3dd30d4ca3c2f4e51b281f8b0c1024c8cfc43c5fcbd58d1ffc1
|
|
| MD5 |
1eb8abd5a2bad7800b7043d244b34921
|
|
| BLAKE2b-256 |
ef6ce86e30686d32568c621051bad1263a2e428be7a7adc6d5aecbfe47723887
|
File details
Details for the file qhub_quantum-1.4.1-py3-none-any.whl.
File metadata
- Download URL: qhub_quantum-1.4.1-py3-none-any.whl
- Upload date:
- Size: 147.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a14ee89f41905bee3a2fb463e88709bbf5b27f08ef101b57aaf2b61e26e9f6e
|
|
| MD5 |
80972668c54bccc4a65ccab53663660d
|
|
| BLAKE2b-256 |
c294dfc38d7b7fa49cfdba550d9484b30efa3a7932b7a7edaf6595b7046f555e
|