Skip to main content

Prerequisites

Install

Configure credentials

Set your SDK key as an environment variable, or create a .env file in your project root:
Install python-dotenv to auto-load .env files: pip install python-dotenv

Your first annealing job

The following example creates a simple Binary Quadratic Model and samples it on the Dynex neuromorphic GPU network:
ComputeBackend.GPU is the primary Dynex backend — your job runs on Dynex’s own neuromorphic GPU chips distributed globally. For offline testing without credentials, use ComputeBackend.LOCAL with the local solver binary.

Your first quantum circuit

Run a PennyLane circuit on Dynex using the DynexCircuit class:

Next steps

Defining Models

Learn about BQM, CQM, and DQM models

Sampling

Sampling parameters and backends explained

Compute Backends

LOCAL, CPU, GPU, and QPU backends

Circuit Examples

Grover’s, Shor’s, QFT, and more