├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── benchmark ├── Visualize.ipynb ├── benchmark.py └── benchmark_data.csv ├── docs ├── _templates │ └── util │ │ └── footer.html ├── conf.py ├── gates.rst ├── guide.rst ├── index.rst ├── install.rst ├── operations.rst ├── quickstart.rst └── registers.rst ├── examples ├── bell_state.py ├── bernstein_vazirani.py ├── deutsch-jozsa.py └── qft.py ├── make.bat ├── qcgpu ├── __init__.py ├── backend.py ├── gate.py └── state.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── test_gate.py ├── test_gate_application.py └── test_state.py └── working.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/Visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/benchmark/Visualize.ipynb -------------------------------------------------------------------------------- /benchmark/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/benchmark/benchmark.py -------------------------------------------------------------------------------- /benchmark/benchmark_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/benchmark/benchmark_data.csv -------------------------------------------------------------------------------- /docs/_templates/util/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/_templates/util/footer.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/gates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/gates.rst -------------------------------------------------------------------------------- /docs/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/guide.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/operations.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/registers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/docs/registers.rst -------------------------------------------------------------------------------- /examples/bell_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/examples/bell_state.py -------------------------------------------------------------------------------- /examples/bernstein_vazirani.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/examples/bernstein_vazirani.py -------------------------------------------------------------------------------- /examples/deutsch-jozsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/examples/deutsch-jozsa.py -------------------------------------------------------------------------------- /examples/qft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/examples/qft.py -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/make.bat -------------------------------------------------------------------------------- /qcgpu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/qcgpu/__init__.py -------------------------------------------------------------------------------- /qcgpu/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/qcgpu/backend.py -------------------------------------------------------------------------------- /qcgpu/gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/qcgpu/gate.py -------------------------------------------------------------------------------- /qcgpu/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/qcgpu/state.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/tests/test_gate.py -------------------------------------------------------------------------------- /tests/test_gate_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/tests/test_gate_application.py -------------------------------------------------------------------------------- /tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/tests/test_state.py -------------------------------------------------------------------------------- /working.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libtangle/qcgpu/HEAD/working.py --------------------------------------------------------------------------------