├── .circleci └── config.yml ├── .devcontainer └── devcontainer.json ├── .gitpod.yml ├── 01-hybrid-computing-getting-started.ipynb ├── 02-hybrid-computing-workflows.ipynb ├── 03-hybrid-computing-components.ipynb ├── CODEOWNERS ├── LICENSE ├── README.md ├── helpers ├── __init__.py ├── draw.py └── qpu.py ├── images ├── cover.png └── kerberos.png ├── requirements.txt └── tests ├── __init__.py └── test_jn.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /01-hybrid-computing-getting-started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/01-hybrid-computing-getting-started.ipynb -------------------------------------------------------------------------------- /02-hybrid-computing-workflows.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/02-hybrid-computing-workflows.ipynb -------------------------------------------------------------------------------- /03-hybrid-computing-components.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/03-hybrid-computing-components.ipynb -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @JoelPasvolsky 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/README.md -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/helpers/draw.py -------------------------------------------------------------------------------- /helpers/qpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/helpers/qpu.py -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/kerberos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/images/kerberos.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_jn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwave-examples/hybrid-computing-notebook/HEAD/tests/test_jn.py --------------------------------------------------------------------------------