├── .github └── workflows │ └── yardstiq-runner-workflow.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Project.toml ├── README.md ├── RESULTS.md ├── bin ├── benchmark ├── install_conda.sh ├── install_julia.sh ├── plot └── utils │ ├── __init__.py │ ├── colors.sh │ ├── constants.sh │ ├── info.jl │ ├── plot_utils.py │ ├── project.py │ └── report.py ├── cirq ├── README.md ├── benchmarks.py ├── benchmarks.sh ├── data │ └── Linux-CPython-3.8-64bit │ │ └── 0001_data.json └── setup.sh ├── images ├── gate.pdf ├── gate.png ├── gates.pdf ├── gates.png ├── gates_relative.pdf ├── gates_relative.png ├── pcircuit.pdf ├── pcircuit.png ├── pcircuit_relative.pdf └── pcircuit_relative.png ├── jkq-ddsim ├── .gitignore ├── README.md ├── benchmarks.sh └── setup.sh ├── pennylane ├── benchmarks.py ├── benchmarks.sh ├── data │ └── Linux-CPython-3.8-64bit │ │ └── 0001_data.json └── setup.sh ├── projectq ├── benchmarks.py ├── benchmarks.sh ├── data │ └── Linux-CPython-3.8-64bit │ │ └── 0001_data.json └── setup.sh ├── pyquest ├── benchmarks.py ├── benchmarks.sh ├── data │ └── Linux-CPython-3.8-64bit │ │ └── 0001_data.json └── setup.sh ├── pyquil ├── README.md ├── benchmarks.sh ├── qft.lisp └── quil_run.py ├── pyzx ├── benchmarks.py ├── benchmarks.sh ├── circuits │ ├── adder_8.qasm │ ├── barenco_tof_10.qasm │ ├── barenco_tof_3.qasm │ ├── barenco_tof_4.qasm │ ├── barenco_tof_5.qasm │ ├── csla_mux_3.qasm │ ├── csum_mux_9.qasm │ ├── cycle_17_3.qasm │ ├── gf2^10_mult.qasm │ ├── gf2^16_mult.qasm │ ├── gf2^32_mult.qasm │ ├── gf2^4_mult.qasm │ ├── gf2^5_mult.qasm │ ├── gf2^64_mult.qasm │ ├── gf2^6_mult.qasm │ ├── gf2^7_mult.qasm │ ├── gf2^8_mult.qasm │ ├── gf2^9_mult.qasm │ ├── grover_5.qasm │ ├── ham15-high.qasm │ ├── ham15-low.qasm │ ├── ham15-med.qasm │ ├── hwb10.qasm │ ├── hwb6.qasm │ ├── hwb8.qasm │ ├── mod5_4.qasm │ ├── mod_adder_1024.qasm │ ├── mod_adder_1048576.qasm │ ├── mod_mult_55.qasm │ ├── mod_red_21.qasm │ ├── qcla_adder_10.qasm │ ├── qcla_com_7.qasm │ ├── qcla_mod_7.qasm │ ├── qft_4.qasm │ ├── rc_adder_6.qasm │ ├── tof_10.qasm │ ├── tof_3.qasm │ ├── tof_4.qasm │ ├── tof_5.qasm │ └── vbe_adder_3.qasm ├── data │ └── Linux-CPython-3.8-64bit │ │ └── 0001_data.json └── setup.sh ├── qiskit ├── README.md ├── benchmarks.py ├── benchmarks.sh └── setup.sh ├── qrack ├── benchmarks.cc ├── benchmarks.sh └── setup.sh ├── quest ├── benchmarks.cc ├── benchmarks.sh └── setup.sh ├── qulacs ├── benchmarks.py ├── benchmarks.sh ├── data │ └── Linux-CPython-3.8-64bit │ │ └── 0001_data.json └── setup.sh ├── runner ├── .gitignore ├── README.md ├── app.py ├── cdk.json ├── requirements.txt ├── runner │ ├── __init__.py │ └── runner_stack.py ├── setup.py └── source.bat ├── yao ├── Manifest.toml ├── Project.toml ├── benchmarks.jl ├── benchmarks.sh ├── data │ └── data.json └── setup.sh └── zxcalculus ├── Manifest.toml ├── Project.toml ├── benchmarks.jl ├── benchmarks.sh ├── circuits ├── adder_8.qasm ├── barenco_tof_10.qasm ├── barenco_tof_3.qasm ├── barenco_tof_4.qasm ├── barenco_tof_5.qasm ├── csla_mux_3.qasm ├── csum_mux_9.qasm ├── cycle_17_3.qasm ├── gf2^10_mult.qasm ├── gf2^16_mult.qasm ├── gf2^32_mult.qasm ├── gf2^4_mult.qasm ├── gf2^5_mult.qasm ├── gf2^64_mult.qasm ├── gf2^6_mult.qasm ├── gf2^7_mult.qasm ├── gf2^8_mult.qasm ├── gf2^9_mult.qasm ├── grover_5.qasm ├── ham15-high.qasm ├── ham15-low.qasm ├── ham15-med.qasm ├── hwb10.qasm ├── hwb6.qasm ├── hwb8.qasm ├── mod5_4.qasm ├── mod_adder_1024.qasm ├── mod_adder_1048576.qasm ├── mod_mult_55.qasm ├── mod_red_21.qasm ├── qcla_adder_10.qasm ├── qcla_com_7.qasm ├── qcla_mod_7.qasm ├── qft_4.qasm ├── rc_adder_6.qasm ├── tof_10.qasm ├── tof_3.qasm ├── tof_4.qasm ├── tof_5.qasm └── vbe_adder_3.qasm ├── data └── data.json └── setup.sh /.github/workflows/yardstiq-runner-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/.github/workflows/yardstiq-runner-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/Project.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/RESULTS.md -------------------------------------------------------------------------------- /bin/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/benchmark -------------------------------------------------------------------------------- /bin/install_conda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/install_conda.sh -------------------------------------------------------------------------------- /bin/install_julia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/install_julia.sh -------------------------------------------------------------------------------- /bin/plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/plot -------------------------------------------------------------------------------- /bin/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/utils/__init__.py -------------------------------------------------------------------------------- /bin/utils/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/utils/colors.sh -------------------------------------------------------------------------------- /bin/utils/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/utils/constants.sh -------------------------------------------------------------------------------- /bin/utils/info.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/utils/info.jl -------------------------------------------------------------------------------- /bin/utils/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/utils/plot_utils.py -------------------------------------------------------------------------------- /bin/utils/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/utils/project.py -------------------------------------------------------------------------------- /bin/utils/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/bin/utils/report.py -------------------------------------------------------------------------------- /cirq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/cirq/README.md -------------------------------------------------------------------------------- /cirq/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/cirq/benchmarks.py -------------------------------------------------------------------------------- /cirq/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/cirq/benchmarks.sh -------------------------------------------------------------------------------- /cirq/data/Linux-CPython-3.8-64bit/0001_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/cirq/data/Linux-CPython-3.8-64bit/0001_data.json -------------------------------------------------------------------------------- /cirq/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/cirq/setup.sh -------------------------------------------------------------------------------- /images/gate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/gate.pdf -------------------------------------------------------------------------------- /images/gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/gate.png -------------------------------------------------------------------------------- /images/gates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/gates.pdf -------------------------------------------------------------------------------- /images/gates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/gates.png -------------------------------------------------------------------------------- /images/gates_relative.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/gates_relative.pdf -------------------------------------------------------------------------------- /images/gates_relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/gates_relative.png -------------------------------------------------------------------------------- /images/pcircuit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/pcircuit.pdf -------------------------------------------------------------------------------- /images/pcircuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/pcircuit.png -------------------------------------------------------------------------------- /images/pcircuit_relative.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/pcircuit_relative.pdf -------------------------------------------------------------------------------- /images/pcircuit_relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/images/pcircuit_relative.png -------------------------------------------------------------------------------- /jkq-ddsim/.gitignore: -------------------------------------------------------------------------------- 1 | ddsim/ 2 | build/ 3 | -------------------------------------------------------------------------------- /jkq-ddsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/jkq-ddsim/README.md -------------------------------------------------------------------------------- /jkq-ddsim/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/jkq-ddsim/benchmarks.sh -------------------------------------------------------------------------------- /jkq-ddsim/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/jkq-ddsim/setup.sh -------------------------------------------------------------------------------- /pennylane/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pennylane/benchmarks.py -------------------------------------------------------------------------------- /pennylane/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pennylane/benchmarks.sh -------------------------------------------------------------------------------- /pennylane/data/Linux-CPython-3.8-64bit/0001_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pennylane/data/Linux-CPython-3.8-64bit/0001_data.json -------------------------------------------------------------------------------- /pennylane/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pennylane/setup.sh -------------------------------------------------------------------------------- /projectq/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/projectq/benchmarks.py -------------------------------------------------------------------------------- /projectq/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/projectq/benchmarks.sh -------------------------------------------------------------------------------- /projectq/data/Linux-CPython-3.8-64bit/0001_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/projectq/data/Linux-CPython-3.8-64bit/0001_data.json -------------------------------------------------------------------------------- /projectq/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/projectq/setup.sh -------------------------------------------------------------------------------- /pyquest/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquest/benchmarks.py -------------------------------------------------------------------------------- /pyquest/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquest/benchmarks.sh -------------------------------------------------------------------------------- /pyquest/data/Linux-CPython-3.8-64bit/0001_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquest/data/Linux-CPython-3.8-64bit/0001_data.json -------------------------------------------------------------------------------- /pyquest/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquest/setup.sh -------------------------------------------------------------------------------- /pyquil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquil/README.md -------------------------------------------------------------------------------- /pyquil/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquil/benchmarks.sh -------------------------------------------------------------------------------- /pyquil/qft.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquil/qft.lisp -------------------------------------------------------------------------------- /pyquil/quil_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyquil/quil_run.py -------------------------------------------------------------------------------- /pyzx/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/benchmarks.py -------------------------------------------------------------------------------- /pyzx/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/benchmarks.sh -------------------------------------------------------------------------------- /pyzx/circuits/adder_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/adder_8.qasm -------------------------------------------------------------------------------- /pyzx/circuits/barenco_tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/barenco_tof_10.qasm -------------------------------------------------------------------------------- /pyzx/circuits/barenco_tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/barenco_tof_3.qasm -------------------------------------------------------------------------------- /pyzx/circuits/barenco_tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/barenco_tof_4.qasm -------------------------------------------------------------------------------- /pyzx/circuits/barenco_tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/barenco_tof_5.qasm -------------------------------------------------------------------------------- /pyzx/circuits/csla_mux_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/csla_mux_3.qasm -------------------------------------------------------------------------------- /pyzx/circuits/csum_mux_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/csum_mux_9.qasm -------------------------------------------------------------------------------- /pyzx/circuits/cycle_17_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/cycle_17_3.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^10_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^10_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^16_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^16_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^32_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^32_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^4_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^4_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^5_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^5_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^64_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^64_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^6_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^6_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^7_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^7_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^8_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^8_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/gf2^9_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/gf2^9_mult.qasm -------------------------------------------------------------------------------- /pyzx/circuits/grover_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/grover_5.qasm -------------------------------------------------------------------------------- /pyzx/circuits/ham15-high.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/ham15-high.qasm -------------------------------------------------------------------------------- /pyzx/circuits/ham15-low.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/ham15-low.qasm -------------------------------------------------------------------------------- /pyzx/circuits/ham15-med.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/ham15-med.qasm -------------------------------------------------------------------------------- /pyzx/circuits/hwb10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/hwb10.qasm -------------------------------------------------------------------------------- /pyzx/circuits/hwb6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/hwb6.qasm -------------------------------------------------------------------------------- /pyzx/circuits/hwb8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/hwb8.qasm -------------------------------------------------------------------------------- /pyzx/circuits/mod5_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/mod5_4.qasm -------------------------------------------------------------------------------- /pyzx/circuits/mod_adder_1024.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/mod_adder_1024.qasm -------------------------------------------------------------------------------- /pyzx/circuits/mod_adder_1048576.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/mod_adder_1048576.qasm -------------------------------------------------------------------------------- /pyzx/circuits/mod_mult_55.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/mod_mult_55.qasm -------------------------------------------------------------------------------- /pyzx/circuits/mod_red_21.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/mod_red_21.qasm -------------------------------------------------------------------------------- /pyzx/circuits/qcla_adder_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/qcla_adder_10.qasm -------------------------------------------------------------------------------- /pyzx/circuits/qcla_com_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/qcla_com_7.qasm -------------------------------------------------------------------------------- /pyzx/circuits/qcla_mod_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/qcla_mod_7.qasm -------------------------------------------------------------------------------- /pyzx/circuits/qft_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/qft_4.qasm -------------------------------------------------------------------------------- /pyzx/circuits/rc_adder_6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/rc_adder_6.qasm -------------------------------------------------------------------------------- /pyzx/circuits/tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/tof_10.qasm -------------------------------------------------------------------------------- /pyzx/circuits/tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/tof_3.qasm -------------------------------------------------------------------------------- /pyzx/circuits/tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/tof_4.qasm -------------------------------------------------------------------------------- /pyzx/circuits/tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/tof_5.qasm -------------------------------------------------------------------------------- /pyzx/circuits/vbe_adder_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/circuits/vbe_adder_3.qasm -------------------------------------------------------------------------------- /pyzx/data/Linux-CPython-3.8-64bit/0001_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/data/Linux-CPython-3.8-64bit/0001_data.json -------------------------------------------------------------------------------- /pyzx/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/pyzx/setup.sh -------------------------------------------------------------------------------- /qiskit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qiskit/README.md -------------------------------------------------------------------------------- /qiskit/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qiskit/benchmarks.py -------------------------------------------------------------------------------- /qiskit/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qiskit/benchmarks.sh -------------------------------------------------------------------------------- /qiskit/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qiskit/setup.sh -------------------------------------------------------------------------------- /qrack/benchmarks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qrack/benchmarks.cc -------------------------------------------------------------------------------- /qrack/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qrack/benchmarks.sh -------------------------------------------------------------------------------- /qrack/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qrack/setup.sh -------------------------------------------------------------------------------- /quest/benchmarks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/quest/benchmarks.cc -------------------------------------------------------------------------------- /quest/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/quest/benchmarks.sh -------------------------------------------------------------------------------- /quest/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/quest/setup.sh -------------------------------------------------------------------------------- /qulacs/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qulacs/benchmarks.py -------------------------------------------------------------------------------- /qulacs/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qulacs/benchmarks.sh -------------------------------------------------------------------------------- /qulacs/data/Linux-CPython-3.8-64bit/0001_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qulacs/data/Linux-CPython-3.8-64bit/0001_data.json -------------------------------------------------------------------------------- /qulacs/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/qulacs/setup.sh -------------------------------------------------------------------------------- /runner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/.gitignore -------------------------------------------------------------------------------- /runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/README.md -------------------------------------------------------------------------------- /runner/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/app.py -------------------------------------------------------------------------------- /runner/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/cdk.json -------------------------------------------------------------------------------- /runner/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/requirements.txt -------------------------------------------------------------------------------- /runner/runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runner/runner/runner_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/runner/runner_stack.py -------------------------------------------------------------------------------- /runner/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/setup.py -------------------------------------------------------------------------------- /runner/source.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/runner/source.bat -------------------------------------------------------------------------------- /yao/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/yao/Manifest.toml -------------------------------------------------------------------------------- /yao/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/yao/Project.toml -------------------------------------------------------------------------------- /yao/benchmarks.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/yao/benchmarks.jl -------------------------------------------------------------------------------- /yao/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/yao/benchmarks.sh -------------------------------------------------------------------------------- /yao/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/yao/data/data.json -------------------------------------------------------------------------------- /yao/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/yao/setup.sh -------------------------------------------------------------------------------- /zxcalculus/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/Manifest.toml -------------------------------------------------------------------------------- /zxcalculus/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/Project.toml -------------------------------------------------------------------------------- /zxcalculus/benchmarks.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/benchmarks.jl -------------------------------------------------------------------------------- /zxcalculus/benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/benchmarks.sh -------------------------------------------------------------------------------- /zxcalculus/circuits/adder_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/adder_8.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/barenco_tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/barenco_tof_10.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/barenco_tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/barenco_tof_3.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/barenco_tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/barenco_tof_4.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/barenco_tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/barenco_tof_5.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/csla_mux_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/csla_mux_3.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/csum_mux_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/csum_mux_9.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/cycle_17_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/cycle_17_3.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^10_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^10_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^16_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^16_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^32_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^32_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^4_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^4_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^5_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^5_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^64_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^64_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^6_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^6_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^7_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^7_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^8_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^8_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/gf2^9_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/gf2^9_mult.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/grover_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/grover_5.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/ham15-high.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/ham15-high.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/ham15-low.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/ham15-low.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/ham15-med.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/ham15-med.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/hwb10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/hwb10.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/hwb6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/hwb6.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/hwb8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/hwb8.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/mod5_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/mod5_4.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/mod_adder_1024.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/mod_adder_1024.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/mod_adder_1048576.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/mod_adder_1048576.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/mod_mult_55.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/mod_mult_55.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/mod_red_21.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/mod_red_21.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/qcla_adder_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/qcla_adder_10.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/qcla_com_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/qcla_com_7.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/qcla_mod_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/qcla_mod_7.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/qft_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/qft_4.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/rc_adder_6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/rc_adder_6.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/tof_10.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/tof_3.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/tof_4.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/tof_5.qasm -------------------------------------------------------------------------------- /zxcalculus/circuits/vbe_adder_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/circuits/vbe_adder_3.qasm -------------------------------------------------------------------------------- /zxcalculus/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/data/data.json -------------------------------------------------------------------------------- /zxcalculus/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstiq/quantum-benchmarks/HEAD/zxcalculus/setup.sh --------------------------------------------------------------------------------