├── .github └── workflows │ ├── python-build.yml │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── Makefile ├── _static │ ├── .gitignore │ └── qf.css ├── _templates │ └── .gitignore ├── bibtex.json ├── channels.rst ├── circuits.rst ├── conf.py ├── decomp.rst ├── devnotes.rst ├── examples.rst ├── gates.rst ├── gradients.rst ├── index.rst ├── info.rst ├── intro.rst ├── misc.rst ├── ops.rst ├── pauli.rst ├── qubits.rst ├── references.bib ├── states.rst ├── transform.rst ├── translate.rst ├── xcirq.rst ├── xforest.rst ├── xqiskit.rst ├── xquirk.rst └── zreferences.rst ├── examples ├── circuit_compilation.py ├── circuit_identities.py ├── circuit_visulizations.py ├── cswap_decomposition.py ├── examples_test.py ├── gate_translations.py ├── gops.py ├── state_prep_w16.py ├── state_prep_w4.py ├── swaptest.py └── weyl.py ├── pyproject.toml ├── pyrightconfig.json ├── quantumflow ├── __init__.py ├── about.py ├── channels.py ├── channels_test.py ├── circuits.py ├── circuits_test.py ├── config.py ├── config_test.py ├── dagcircuit.py ├── dagcircuit_test.py ├── decompositions.py ├── decompositions_test.py ├── deprecated.py ├── deprecated_test.py ├── future.py ├── future_test.py ├── gates.py ├── gates_test.py ├── gatesets.py ├── gradients.py ├── gradients_test.py ├── info.py ├── info_test.py ├── ops.py ├── ops_test.py ├── paulialgebra.py ├── paulialgebra_test.py ├── qubits.py ├── states.py ├── states_test.py ├── stdgates │ ├── __init__.py │ ├── stdgates.py │ ├── stdgates_1q.py │ ├── stdgates_1q_test.py │ ├── stdgates_2q.py │ ├── stdgates_2q_test.py │ ├── stdgates_3q.py │ ├── stdgates_3q_test.py │ ├── stdgates_cirq.py │ ├── stdgates_cirq_test.py │ ├── stdgates_forest.py │ ├── stdgates_forest_test.py │ ├── stdgates_qasm.py │ ├── stdgates_qasm_test.py │ └── stdgates_test.py ├── stdops.py ├── stdops_test.py ├── tensors.py ├── tensors_test.py ├── transform.py ├── transform_test.py ├── translate │ ├── __init__.py │ ├── translate_gates.py │ ├── translate_stdgates_1q.py │ ├── translate_stdgates_2q.py │ ├── translate_stdgates_3q.py │ ├── translate_test.py │ └── translations.py ├── transpile.py ├── transpile_test.py ├── utils.py ├── utils_test.py ├── var.py ├── var_test.py ├── visualization.py ├── visualization_test.py ├── xbraket.py ├── xbraket_test.py ├── xcirq.py ├── xcirq_test.py ├── xforest.py ├── xforest_test.py ├── xqiskit.py ├── xqiskit_test.py ├── xqsim.py ├── xqsim_test.py ├── xquirk.py ├── xquirk_test.py ├── xqutip.py └── xqutip_test.py └── tutorial ├── README.md ├── qf-tutorial-translate.ipynb └── qf-tutorial-transpile.ipynb /.github/workflows/python-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/.github/workflows/python-build.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/qf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/_static/qf.css -------------------------------------------------------------------------------- /docs/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/bibtex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/bibtex.json -------------------------------------------------------------------------------- /docs/channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/channels.rst -------------------------------------------------------------------------------- /docs/circuits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/circuits.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/decomp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/decomp.rst -------------------------------------------------------------------------------- /docs/devnotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/devnotes.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/gates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/gates.rst -------------------------------------------------------------------------------- /docs/gradients.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule :: quantumflow.gradients 3 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/info.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/misc.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule :: quantumflow.stdops 3 | -------------------------------------------------------------------------------- /docs/ops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/ops.rst -------------------------------------------------------------------------------- /docs/pauli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/pauli.rst -------------------------------------------------------------------------------- /docs/qubits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/qubits.rst -------------------------------------------------------------------------------- /docs/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/references.bib -------------------------------------------------------------------------------- /docs/states.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/states.rst -------------------------------------------------------------------------------- /docs/transform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/transform.rst -------------------------------------------------------------------------------- /docs/translate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/translate.rst -------------------------------------------------------------------------------- /docs/xcirq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/xcirq.rst -------------------------------------------------------------------------------- /docs/xforest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/xforest.rst -------------------------------------------------------------------------------- /docs/xqiskit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/xqiskit.rst -------------------------------------------------------------------------------- /docs/xquirk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/xquirk.rst -------------------------------------------------------------------------------- /docs/zreferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/docs/zreferences.rst -------------------------------------------------------------------------------- /examples/circuit_compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/circuit_compilation.py -------------------------------------------------------------------------------- /examples/circuit_identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/circuit_identities.py -------------------------------------------------------------------------------- /examples/circuit_visulizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/circuit_visulizations.py -------------------------------------------------------------------------------- /examples/cswap_decomposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/cswap_decomposition.py -------------------------------------------------------------------------------- /examples/examples_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/examples_test.py -------------------------------------------------------------------------------- /examples/gate_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/gate_translations.py -------------------------------------------------------------------------------- /examples/gops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/gops.py -------------------------------------------------------------------------------- /examples/state_prep_w16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/state_prep_w16.py -------------------------------------------------------------------------------- /examples/state_prep_w4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/state_prep_w4.py -------------------------------------------------------------------------------- /examples/swaptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/swaptest.py -------------------------------------------------------------------------------- /examples/weyl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/examples/weyl.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /quantumflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/__init__.py -------------------------------------------------------------------------------- /quantumflow/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/about.py -------------------------------------------------------------------------------- /quantumflow/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/channels.py -------------------------------------------------------------------------------- /quantumflow/channels_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/channels_test.py -------------------------------------------------------------------------------- /quantumflow/circuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/circuits.py -------------------------------------------------------------------------------- /quantumflow/circuits_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/circuits_test.py -------------------------------------------------------------------------------- /quantumflow/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/config.py -------------------------------------------------------------------------------- /quantumflow/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/config_test.py -------------------------------------------------------------------------------- /quantumflow/dagcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/dagcircuit.py -------------------------------------------------------------------------------- /quantumflow/dagcircuit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/dagcircuit_test.py -------------------------------------------------------------------------------- /quantumflow/decompositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/decompositions.py -------------------------------------------------------------------------------- /quantumflow/decompositions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/decompositions_test.py -------------------------------------------------------------------------------- /quantumflow/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/deprecated.py -------------------------------------------------------------------------------- /quantumflow/deprecated_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/deprecated_test.py -------------------------------------------------------------------------------- /quantumflow/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/future.py -------------------------------------------------------------------------------- /quantumflow/future_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/future_test.py -------------------------------------------------------------------------------- /quantumflow/gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/gates.py -------------------------------------------------------------------------------- /quantumflow/gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/gates_test.py -------------------------------------------------------------------------------- /quantumflow/gatesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/gatesets.py -------------------------------------------------------------------------------- /quantumflow/gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/gradients.py -------------------------------------------------------------------------------- /quantumflow/gradients_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/gradients_test.py -------------------------------------------------------------------------------- /quantumflow/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/info.py -------------------------------------------------------------------------------- /quantumflow/info_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/info_test.py -------------------------------------------------------------------------------- /quantumflow/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/ops.py -------------------------------------------------------------------------------- /quantumflow/ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/ops_test.py -------------------------------------------------------------------------------- /quantumflow/paulialgebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/paulialgebra.py -------------------------------------------------------------------------------- /quantumflow/paulialgebra_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/paulialgebra_test.py -------------------------------------------------------------------------------- /quantumflow/qubits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/qubits.py -------------------------------------------------------------------------------- /quantumflow/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/states.py -------------------------------------------------------------------------------- /quantumflow/states_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/states_test.py -------------------------------------------------------------------------------- /quantumflow/stdgates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/__init__.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_1q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_1q.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_1q_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_1q_test.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_2q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_2q.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_2q_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_2q_test.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_3q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_3q.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_3q_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_3q_test.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_cirq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_cirq.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_cirq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_cirq_test.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_forest.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_forest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_forest_test.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_qasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_qasm.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_qasm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_qasm_test.py -------------------------------------------------------------------------------- /quantumflow/stdgates/stdgates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdgates/stdgates_test.py -------------------------------------------------------------------------------- /quantumflow/stdops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdops.py -------------------------------------------------------------------------------- /quantumflow/stdops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/stdops_test.py -------------------------------------------------------------------------------- /quantumflow/tensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/tensors.py -------------------------------------------------------------------------------- /quantumflow/tensors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/tensors_test.py -------------------------------------------------------------------------------- /quantumflow/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/transform.py -------------------------------------------------------------------------------- /quantumflow/transform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/transform_test.py -------------------------------------------------------------------------------- /quantumflow/translate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/translate/__init__.py -------------------------------------------------------------------------------- /quantumflow/translate/translate_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/translate/translate_gates.py -------------------------------------------------------------------------------- /quantumflow/translate/translate_stdgates_1q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/translate/translate_stdgates_1q.py -------------------------------------------------------------------------------- /quantumflow/translate/translate_stdgates_2q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/translate/translate_stdgates_2q.py -------------------------------------------------------------------------------- /quantumflow/translate/translate_stdgates_3q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/translate/translate_stdgates_3q.py -------------------------------------------------------------------------------- /quantumflow/translate/translate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/translate/translate_test.py -------------------------------------------------------------------------------- /quantumflow/translate/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/translate/translations.py -------------------------------------------------------------------------------- /quantumflow/transpile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/transpile.py -------------------------------------------------------------------------------- /quantumflow/transpile_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/transpile_test.py -------------------------------------------------------------------------------- /quantumflow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/utils.py -------------------------------------------------------------------------------- /quantumflow/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/utils_test.py -------------------------------------------------------------------------------- /quantumflow/var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/var.py -------------------------------------------------------------------------------- /quantumflow/var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/var_test.py -------------------------------------------------------------------------------- /quantumflow/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/visualization.py -------------------------------------------------------------------------------- /quantumflow/visualization_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/visualization_test.py -------------------------------------------------------------------------------- /quantumflow/xbraket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xbraket.py -------------------------------------------------------------------------------- /quantumflow/xbraket_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xbraket_test.py -------------------------------------------------------------------------------- /quantumflow/xcirq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xcirq.py -------------------------------------------------------------------------------- /quantumflow/xcirq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xcirq_test.py -------------------------------------------------------------------------------- /quantumflow/xforest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xforest.py -------------------------------------------------------------------------------- /quantumflow/xforest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xforest_test.py -------------------------------------------------------------------------------- /quantumflow/xqiskit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xqiskit.py -------------------------------------------------------------------------------- /quantumflow/xqiskit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xqiskit_test.py -------------------------------------------------------------------------------- /quantumflow/xqsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xqsim.py -------------------------------------------------------------------------------- /quantumflow/xqsim_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xqsim_test.py -------------------------------------------------------------------------------- /quantumflow/xquirk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xquirk.py -------------------------------------------------------------------------------- /quantumflow/xquirk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xquirk_test.py -------------------------------------------------------------------------------- /quantumflow/xqutip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xqutip.py -------------------------------------------------------------------------------- /quantumflow/xqutip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/quantumflow/xqutip_test.py -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/qf-tutorial-translate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/tutorial/qf-tutorial-translate.ipynb -------------------------------------------------------------------------------- /tutorial/qf-tutorial-transpile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gecrooks/quantumflow/HEAD/tutorial/qf-tutorial-transpile.ipynb --------------------------------------------------------------------------------