This package converts the circuit of qiskit into a circuit supported by quafu
Project description
Introduction
This package converts the circuit of qiskit into a circuit supported by quafu The converted circuit can be input to the cloud platform for processing
Input and Output
Input:
qc: QuantumCircuit object of Qiskit
regName (optional): Modified register name
basis_gates (optional): The set of gates supported by the quafu chip
optimization_level (optional): optimization level
Output:
The function returns two objects, quafu_qc and qc_merge
quafu_qc: The circuit instance of quafu
qc_merge: The converted qasm circuit in string form.
Example:
Import packages
from qiskit import QuantumCircuit
from qiskit.quantum_info import Operator
from qiskit2quafu import qiskit2quafu
from quafu import User, Task
Create a circuit
qiskitCircuit = QuantumCircuit(4)
qiskitCircuit.h([0,1,2,3])
qiskitCircuit.mcx([0,1,2],3)
qiskitCircuit.ry(0.6,0)
permute = Operator([[0, 0, 1, 0, 0, 0, 0, 0],
[1, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 1],
[0, 0, 0, 0, 0, 1, 0, 0],
[0, 0, 0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 1, 0, 0, 0]])
qiskitCircuit.unitary(permute, [0,1,3], label='P')
qiskitCircuit.draw(output='mpl')
Call the transfer function
quafu_gates = ['cx','cy','cz','cp','u1','u2','u3','h','id','swap','cswap','p','rx','ry',
'rz','x','y','z','s','sdg','t','tdg','sx','ccx','rxx','ryy','rzz']
quafuCircuit, transpiled_qasm = qiskit2quafu(qiskitCircuit)
quafuCircuit.draw_circuit()
After transfer, the new circuit can be supported by quafu.
To upload the task, refer to https://scq-cloud.github.io/
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 qiskit2quafu-0.0.14.tar.gz.
File metadata
- Download URL: qiskit2quafu-0.0.14.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04a8ea9b926e6f34c99e361959dd3b3ee6822269c077a965cb64b47f9ba4c52c
|
|
| MD5 |
231ae419cf9d642662ffc37e988519e4
|
|
| BLAKE2b-256 |
f0846a57b962a91e1555ac7aa567c1a8fde69943754e526072758def4acf8207
|
File details
Details for the file qiskit2quafu-0.0.14-py3-none-any.whl.
File metadata
- Download URL: qiskit2quafu-0.0.14-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba7d81ff76712f1d10b9c2ada6aeb13fbd1773382f55d917bccf3d524e75b89a
|
|
| MD5 |
af1acc4cec80f5b0ee70ad190764c543
|
|
| BLAKE2b-256 |
6f1dff44656977e6ddd0bc448f19027973a067f0f31a055ae8a77c215d953311
|