OriginQ / QPanda-2

QPanda 2 is an open source quantum computing framework developed by OriginQC that can be used to build, run, and optimize quantum algorithms.

Home Page:https://originqc.com.cn/en/quantum_soft.html?type=qpanda&lv2id=43&lv3id=72

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QPanda 2

图片:

QPanda2 is an open source quantum computing framework developed by Origin Quantum, which can be used to build, run and optimize quantum algorithms. QPanda2 is the basic library of a series of software developped by Origin Quantum, which provides core components for QRunes, Qurator and quantum computing services.

Linux Windows
Build Status Build Status
C++ Documents Python Documents
Documentation Status Documentation Status

Install for Python

Python 3.8-3.11

Install using pip:

pip install pyqpanda

Other versions of Python and C++

If you want to use other versions of Python3 or use C++ API, Compiling from source is recommended. Reference to the Documents for tutorials

Python sample code

The following example can be used to construct quantum entanglement in a quantum computer(|0000>+|1111>), measure all qubits and run 1000 times:

from pyqpanda import *

qvm = CPUQVM()
qvm.init_qvm()
prog = QProg()
q = qvm.qAlloc_many(4)
c = qvm.cAlloc_many(4)
prog << H(q[0])\
    << CNOT(q[0:-1],q[1:])\
    << measure_all(q,c)
result = qvm.run_with_configuration(prog, c, 1000)
print(result)
qvm.finalize()

Results:

{'0000': 518, '1111': 482}

See more examples

Other informations

How to cite

Please cite this arXiv paper: QPanda: high-performance quantum computing framework for multiple application scenarios

@article{dou2022qpanda,
  title={QPanda: high-performance quantum computing framework for multiple application scenarios},
  author={Dou, Menghan and Zou, Tianrui and Fang, Yuan and Wang, Jing and Zhao, Dongyi and Yu, Lei and Chen, Boying and Guo, Wenbo and Li, Ye and Chen, Zhaoyun and Guo, Guoping},
  journal={arXiv preprint arXiv:2212.14201},
  year={2022}
}

About

QPanda is developed by Origin Quantum, which is committed to the development and application of quantum computers, It has launched 6-Qubit superconducting quantum chip (KF C6-130) and 2-Qubit semi-conducting quantum chip (XW B2-100). The goal of the team is to produce more qubit chips in recent years, provide open cloud services, and realize quantum advantages and quantum applications. The software team underpins the hardware,In addition to QPanda, it has also developed QRunes, Qurator, OriginQ Cloud service platform, OriginQ Education cloud and other products.

License

Apache License 2.0

About

QPanda 2 is an open source quantum computing framework developed by OriginQC that can be used to build, run, and optimize quantum algorithms.

https://originqc.com.cn/en/quantum_soft.html?type=qpanda&lv2id=43&lv3id=72

License:Apache License 2.0


Languages

Language:C++ 85.9%Language:Python 7.3%Language:Jupyter Notebook 3.6%Language:Cuda 2.3%Language:CMake 0.6%Language:C 0.2%Language:Shell 0.0%Language:DTrace 0.0%