extend the Qiskit classroom applications.
Project description
qiskit-classroom-converter
Qiskit classroom Converter
Version
0.6.0 (2025-01-01) : The Version has been updated to be compatible with Qiskit 1.3.1 and Python 3.13. 0.5.0 (2024-03-06) : The Version has been updated to be compatible with Qiskit 1.0.0 and Python 3.12.
Documents
https://kmu-quantum-classroom.github.io/qiskit-classroom-converter/qiskit_class_converter.html
Official USER Guide
https://kmu-quantum-classroom.github.io/documents/overview.html
Support convert method
- quantum circuit to bra-ket notation
- quantum circuit to matrix
- matrix to quantum circuit
- string to bra-ket notation
Options
| convert method | option |
|---|---|
| QC_TO_BRA_KET | expression{simplify, expand}, print{raw} |
| QC_TO_MATRIX | print{raw} |
| MATRIX_TO_QC | label{str} |
| STR_TO_BRA_KET | print{raw} |
from qiskit_class_converter import ConversionService
ConversionService(conversion_type="QC_TO_BRA_KET", option={"expression": "simplify"})
Required data
- MATRIX_TO_QC
- User's QuantumCircuit object
from qiskit import QuantumCircuit
from qiskit_class_converter import ConversionService
input_value = [
[1, 0, 0, 0],
[0, 0, 0, 1],
[0, 0, 1, 0],
[0, 1, 0, 0]
]
sample_converter = ConversionService(conversion_type="MATRIX_TO_QC")
result = sample_converter.convert(input_value=input_value)
# using user's QuantumCircuit object
quantum_circuit = QuantumCircuit(2, 2)
quantum_circuit.append(result, [0, 1])
How to Install
pip install qiskit-classroom-converter
Docker Pull & Run
Alternative installation with docker image.
docker pull ghcr.io/kmu-quantum-classroom/qiskit-classroom-converter
docker run -p 8888:8888 ghcr.io/kmu-quantum-classroom/qiskit-classroom-converter
Dependencies
- qiskit
Usage
from qiskit import QuantumCircuit
from qiskit_class_converter import ConversionService
# quantum circuit to matrix
quantum_circuit = QuantumCircuit(2, 2)
quantum_circuit.x(0)
quantum_circuit.cx(0, 1)
sample_converter = ConversionService(conversion_type="QC_TO_MATRIX")
result = sample_converter.convert(input_value=quantum_circuit)
code : example.py
How to test the software
python -m unittest -v
or
tox
ARM Platform
Mac ARM chips users may have issues running this package.
We have provided a Dockerfile, which can be used docker-compose.
docker-compose up --build
Acknowledgement
- 국문 : "본 연구는 2022년 과학기술정보통신부 및 정보통신기획평가원의 SW중심대학사업의 연구결과로 수행되었음"(2022-0-00964)
- English : "This research was supported by the MIST(Ministry of Science, ICT), Korea, under the National Program for Excellence in SW), supervised by the IITP(Institute of Information & communications Technology Planning & Evaluation) in 2022"(2022-0-00964)
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 qiskit_classroom_converter-0.6.0.tar.gz.
File metadata
- Download URL: qiskit_classroom_converter-0.6.0.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
279f9dc93841721474cdad1f16ce31470264a11807452fb82763a456d3cd1fee
|
|
| MD5 |
926b5622a92a0c8b72cca4acfd0e2998
|
|
| BLAKE2b-256 |
31035c25197f79b0465f981d3880fcb191ab88730e936f57c40162515174725f
|
File details
Details for the file qiskit_classroom_converter-0.6.0-py3-none-any.whl.
File metadata
- Download URL: qiskit_classroom_converter-0.6.0-py3-none-any.whl
- Upload date:
- Size: 17.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1349629f8862369bf70506fc5318ba11aca7b07c3db56c58ee885188733acd37
|
|
| MD5 |
3e069ad01bf292ddecec19383519fb8b
|
|
| BLAKE2b-256 |
724114af4c43a485a601c6425975e4da370ed6dba133c20185db40873ba8f988
|