├── .gitattributes ├── .github └── workflows │ ├── build_and_test.yml │ └── python_build_wheel.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CMakeLists.txt ├── LICENSE ├── QPandaLiteCpp ├── CMakeLists.txt ├── Pybinder │ ├── CMakeLists.txt │ └── QPandaLitePy.cpp ├── Thirdparty │ └── CMakeLists.txt ├── src │ ├── CMakeLists.txt │ ├── basic_math.cpp │ ├── basic_math.h │ ├── density_operator_simulator.cpp │ ├── density_operator_simulator.h │ ├── errors.h │ ├── qopcode.cpp │ ├── qopcode.h │ ├── rng.h │ ├── simulator.cpp │ ├── simulator.h │ ├── simulator_impl.cpp │ └── simulator_impl.h └── test │ ├── CMakeLists.txt │ └── main.cpp ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt └── source │ ├── features │ ├── build_circuit.md │ ├── submit_task_general.md │ └── test.md │ ├── guide │ ├── build_circuit_simple.md │ ├── circuit_transpile.md │ ├── installation.md │ ├── opcode.md │ ├── originir_simple.md │ ├── qasm.md │ ├── simulation_simple.md │ └── submit_task_simple.md │ ├── modules.rst │ ├── qpandalite.analyzer.rst │ ├── qpandalite.circuit_builder.rst │ ├── qpandalite.originir.rst │ ├── qpandalite.qasm.rst │ ├── qpandalite.qcloud_config.rst │ ├── qpandalite.rst │ ├── qpandalite.simulator.rst │ ├── qpandalite.task.ibm.rst │ ├── qpandalite.task.origin_qcloud.rst │ ├── qpandalite.task.originq.rst │ ├── qpandalite.task.originq_dummy.rst │ ├── qpandalite.task.platform_template.rst │ ├── qpandalite.task.quafu.rst │ ├── qpandalite.task.rst │ ├── qpandalite.test.rst │ └── qpandalite.transpiler.rst ├── qcloud_config_template ├── ibm_template.py ├── originq_cloud_template.py ├── originq_template.py └── quafu_template.py ├── qpandalite ├── __init__.py ├── analyzer │ ├── __init__.py │ ├── expectation.py │ └── result_adapter.py ├── circuit_builder │ ├── __init__.py │ ├── opcode.py │ ├── originir_spec.py │ ├── qasm_spec.py │ ├── qcircuit.py │ ├── random_originir.py │ ├── random_qasm.py │ └── translate_qasm2_oir.py ├── originir │ ├── __init__.py │ ├── originir_base_parser.py │ └── originir_line_parser.py ├── qasm │ ├── __init__.py │ ├── exceptions.py │ ├── qasm_base_parser.py │ └── qasm_line_parser.py ├── qcloud_config │ ├── __init__.py │ ├── ibm_online_config.py │ ├── originq_cloud_config.py │ ├── originq_online_config.py │ └── quafu_online_config.py ├── simulator │ ├── QPandaLitePy.pyi │ ├── __init__.py │ ├── base_simulator.py │ ├── error_model.py │ ├── get_backend.py │ ├── opcode_simulator.py │ ├── originir_simulator.py │ ├── qasm_simulator.py │ └── qutip_sim_impl.py ├── task │ ├── __init__.py │ ├── ibm │ │ ├── __init__.py │ │ └── task.py │ ├── origin_qcloud │ │ ├── __init__.py │ │ └── task.py │ ├── originq │ │ ├── __init__.py │ │ └── task.py │ ├── originq_dummy │ │ ├── __init__.py │ │ └── task.py │ ├── platform_template │ │ ├── __init__.py │ │ └── task.py │ ├── quafu │ │ ├── __init__.py │ │ └── task.py │ └── task_utils.py ├── test │ ├── QASMBench.pkl │ ├── __init__.py │ ├── _utils.py │ ├── test_QASMBench.py │ ├── test_demos.py │ ├── test_general.py │ ├── test_originir_parser.py │ ├── test_qasm_parser.py │ ├── test_random_OriginIR.py │ ├── test_random_QASM.py │ ├── test_random_QASM_measure.py │ ├── test_result_adapter.py │ ├── test_simulator.py │ └── test_transpile.py ├── transpiler │ ├── __init__.py │ ├── _utils.py │ ├── converter.py │ ├── draw.py │ ├── qiskit_transpiler.py │ └── timeline.py └── version.py ├── setup.py ├── stubgen.py └── test └── demo ├── 1. build circuit and remap.py ├── 2. run in the dummy server.py └── 3. post process the result.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.github/workflows/python_build_wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/.github/workflows/python_build_wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /QPandaLiteCpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/CMakeLists.txt -------------------------------------------------------------------------------- /QPandaLiteCpp/Pybinder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/Pybinder/CMakeLists.txt -------------------------------------------------------------------------------- /QPandaLiteCpp/Pybinder/QPandaLitePy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/Pybinder/QPandaLitePy.cpp -------------------------------------------------------------------------------- /QPandaLiteCpp/Thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/Thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /QPandaLiteCpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /QPandaLiteCpp/src/basic_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/basic_math.cpp -------------------------------------------------------------------------------- /QPandaLiteCpp/src/basic_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/basic_math.h -------------------------------------------------------------------------------- /QPandaLiteCpp/src/density_operator_simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/density_operator_simulator.cpp -------------------------------------------------------------------------------- /QPandaLiteCpp/src/density_operator_simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/density_operator_simulator.h -------------------------------------------------------------------------------- /QPandaLiteCpp/src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/errors.h -------------------------------------------------------------------------------- /QPandaLiteCpp/src/qopcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/qopcode.cpp -------------------------------------------------------------------------------- /QPandaLiteCpp/src/qopcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/qopcode.h -------------------------------------------------------------------------------- /QPandaLiteCpp/src/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/rng.h -------------------------------------------------------------------------------- /QPandaLiteCpp/src/simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/simulator.cpp -------------------------------------------------------------------------------- /QPandaLiteCpp/src/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/simulator.h -------------------------------------------------------------------------------- /QPandaLiteCpp/src/simulator_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/simulator_impl.cpp -------------------------------------------------------------------------------- /QPandaLiteCpp/src/simulator_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/src/simulator_impl.h -------------------------------------------------------------------------------- /QPandaLiteCpp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/test/CMakeLists.txt -------------------------------------------------------------------------------- /QPandaLiteCpp/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/QPandaLiteCpp/test/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/features/build_circuit.md: -------------------------------------------------------------------------------- 1 | # 利用QPanda-lite构建量子线路 -------------------------------------------------------------------------------- /docs/source/features/submit_task_general.md: -------------------------------------------------------------------------------- 1 | # 将量子线路提交到真机上运行(跨平台) -------------------------------------------------------------------------------- /docs/source/features/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/features/test.md -------------------------------------------------------------------------------- /docs/source/guide/build_circuit_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/guide/build_circuit_simple.md -------------------------------------------------------------------------------- /docs/source/guide/circuit_transpile.md: -------------------------------------------------------------------------------- 1 | # 量子线路编译 2 | 3 | ## 可视化 4 | 5 | -------------------------------------------------------------------------------- /docs/source/guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/guide/installation.md -------------------------------------------------------------------------------- /docs/source/guide/opcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/guide/opcode.md -------------------------------------------------------------------------------- /docs/source/guide/originir_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/guide/originir_simple.md -------------------------------------------------------------------------------- /docs/source/guide/qasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/guide/qasm.md -------------------------------------------------------------------------------- /docs/source/guide/simulation_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/guide/simulation_simple.md -------------------------------------------------------------------------------- /docs/source/guide/submit_task_simple.md: -------------------------------------------------------------------------------- 1 | # 提交任务进行量子云计算 -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.analyzer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.analyzer.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.circuit_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.circuit_builder.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.originir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.originir.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.qasm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.qasm.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.qcloud_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.qcloud_config.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.simulator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.simulator.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.task.ibm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.task.ibm.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.task.origin_qcloud.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.task.origin_qcloud.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.task.originq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.task.originq.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.task.originq_dummy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.task.originq_dummy.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.task.platform_template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.task.platform_template.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.task.quafu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.task.quafu.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.task.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.test.rst -------------------------------------------------------------------------------- /docs/source/qpandalite.transpiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/docs/source/qpandalite.transpiler.rst -------------------------------------------------------------------------------- /qcloud_config_template/ibm_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qcloud_config_template/ibm_template.py -------------------------------------------------------------------------------- /qcloud_config_template/originq_cloud_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qcloud_config_template/originq_cloud_template.py -------------------------------------------------------------------------------- /qcloud_config_template/originq_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qcloud_config_template/originq_template.py -------------------------------------------------------------------------------- /qcloud_config_template/quafu_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qcloud_config_template/quafu_template.py -------------------------------------------------------------------------------- /qpandalite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/__init__.py -------------------------------------------------------------------------------- /qpandalite/analyzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/analyzer/__init__.py -------------------------------------------------------------------------------- /qpandalite/analyzer/expectation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/analyzer/expectation.py -------------------------------------------------------------------------------- /qpandalite/analyzer/result_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/analyzer/result_adapter.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/__init__.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/opcode.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/originir_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/originir_spec.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/qasm_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/qasm_spec.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/qcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/qcircuit.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/random_originir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/random_originir.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/random_qasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/random_qasm.py -------------------------------------------------------------------------------- /qpandalite/circuit_builder/translate_qasm2_oir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/circuit_builder/translate_qasm2_oir.py -------------------------------------------------------------------------------- /qpandalite/originir/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/originir/__init__.py -------------------------------------------------------------------------------- /qpandalite/originir/originir_base_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/originir/originir_base_parser.py -------------------------------------------------------------------------------- /qpandalite/originir/originir_line_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/originir/originir_line_parser.py -------------------------------------------------------------------------------- /qpandalite/qasm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qasm/__init__.py -------------------------------------------------------------------------------- /qpandalite/qasm/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qasm/exceptions.py -------------------------------------------------------------------------------- /qpandalite/qasm/qasm_base_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qasm/qasm_base_parser.py -------------------------------------------------------------------------------- /qpandalite/qasm/qasm_line_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qasm/qasm_line_parser.py -------------------------------------------------------------------------------- /qpandalite/qcloud_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qpandalite/qcloud_config/ibm_online_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qcloud_config/ibm_online_config.py -------------------------------------------------------------------------------- /qpandalite/qcloud_config/originq_cloud_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qcloud_config/originq_cloud_config.py -------------------------------------------------------------------------------- /qpandalite/qcloud_config/originq_online_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qcloud_config/originq_online_config.py -------------------------------------------------------------------------------- /qpandalite/qcloud_config/quafu_online_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/qcloud_config/quafu_online_config.py -------------------------------------------------------------------------------- /qpandalite/simulator/QPandaLitePy.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/QPandaLitePy.pyi -------------------------------------------------------------------------------- /qpandalite/simulator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/__init__.py -------------------------------------------------------------------------------- /qpandalite/simulator/base_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/base_simulator.py -------------------------------------------------------------------------------- /qpandalite/simulator/error_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/error_model.py -------------------------------------------------------------------------------- /qpandalite/simulator/get_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/get_backend.py -------------------------------------------------------------------------------- /qpandalite/simulator/opcode_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/opcode_simulator.py -------------------------------------------------------------------------------- /qpandalite/simulator/originir_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/originir_simulator.py -------------------------------------------------------------------------------- /qpandalite/simulator/qasm_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/qasm_simulator.py -------------------------------------------------------------------------------- /qpandalite/simulator/qutip_sim_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/simulator/qutip_sim_impl.py -------------------------------------------------------------------------------- /qpandalite/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qpandalite/task/ibm/__init__.py: -------------------------------------------------------------------------------- 1 | from .task import * -------------------------------------------------------------------------------- /qpandalite/task/ibm/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/task/ibm/task.py -------------------------------------------------------------------------------- /qpandalite/task/origin_qcloud/__init__.py: -------------------------------------------------------------------------------- 1 | from .task import * -------------------------------------------------------------------------------- /qpandalite/task/origin_qcloud/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/task/origin_qcloud/task.py -------------------------------------------------------------------------------- /qpandalite/task/originq/__init__.py: -------------------------------------------------------------------------------- 1 | from .task import * -------------------------------------------------------------------------------- /qpandalite/task/originq/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/task/originq/task.py -------------------------------------------------------------------------------- /qpandalite/task/originq_dummy/__init__.py: -------------------------------------------------------------------------------- 1 | from .task import * -------------------------------------------------------------------------------- /qpandalite/task/originq_dummy/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/task/originq_dummy/task.py -------------------------------------------------------------------------------- /qpandalite/task/platform_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qpandalite/task/platform_template/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/task/platform_template/task.py -------------------------------------------------------------------------------- /qpandalite/task/quafu/__init__.py: -------------------------------------------------------------------------------- 1 | from .task import * -------------------------------------------------------------------------------- /qpandalite/task/quafu/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/task/quafu/task.py -------------------------------------------------------------------------------- /qpandalite/task/task_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/task/task_utils.py -------------------------------------------------------------------------------- /qpandalite/test/QASMBench.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/QASMBench.pkl -------------------------------------------------------------------------------- /qpandalite/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/__init__.py -------------------------------------------------------------------------------- /qpandalite/test/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/_utils.py -------------------------------------------------------------------------------- /qpandalite/test/test_QASMBench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_QASMBench.py -------------------------------------------------------------------------------- /qpandalite/test/test_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_demos.py -------------------------------------------------------------------------------- /qpandalite/test/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_general.py -------------------------------------------------------------------------------- /qpandalite/test/test_originir_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_originir_parser.py -------------------------------------------------------------------------------- /qpandalite/test/test_qasm_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_qasm_parser.py -------------------------------------------------------------------------------- /qpandalite/test/test_random_OriginIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_random_OriginIR.py -------------------------------------------------------------------------------- /qpandalite/test/test_random_QASM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_random_QASM.py -------------------------------------------------------------------------------- /qpandalite/test/test_random_QASM_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_random_QASM_measure.py -------------------------------------------------------------------------------- /qpandalite/test/test_result_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_result_adapter.py -------------------------------------------------------------------------------- /qpandalite/test/test_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_simulator.py -------------------------------------------------------------------------------- /qpandalite/test/test_transpile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/test/test_transpile.py -------------------------------------------------------------------------------- /qpandalite/transpiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/transpiler/__init__.py -------------------------------------------------------------------------------- /qpandalite/transpiler/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/transpiler/_utils.py -------------------------------------------------------------------------------- /qpandalite/transpiler/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/transpiler/converter.py -------------------------------------------------------------------------------- /qpandalite/transpiler/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/transpiler/draw.py -------------------------------------------------------------------------------- /qpandalite/transpiler/qiskit_transpiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/transpiler/qiskit_transpiler.py -------------------------------------------------------------------------------- /qpandalite/transpiler/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/qpandalite/transpiler/timeline.py -------------------------------------------------------------------------------- /qpandalite/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.6" -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/setup.py -------------------------------------------------------------------------------- /stubgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/stubgen.py -------------------------------------------------------------------------------- /test/demo/1. build circuit and remap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/test/demo/1. build circuit and remap.py -------------------------------------------------------------------------------- /test/demo/2. run in the dummy server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/test/demo/2. run in the dummy server.py -------------------------------------------------------------------------------- /test/demo/3. post process the result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agony5757/QPanda-lite/HEAD/test/demo/3. post process the result.py --------------------------------------------------------------------------------