QFlow Studio canvas used for a Bell State sample workflow

Simulator starter

Bell State

Two-qubit entanglement demo that shows the shortest public path from visual circuit to generated source, counts, and evidence.

Qubits

2

Operations

4

Shots

4,096

Route rationale

Local Qiskit Aer simulator, no provider token required

Dominant 00 and 11 states in a reviewer-safe result packet

Counts

112,047
002,049

Qiskit

from qiskit import QuantumCircuit

qc = QuantumCircuit(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure([0, 1], [0, 1])

Evidence manifest

{
  "workflowId": "QF-SAMPLE-BELL",
  "runner": "qiskit-aer",
  "artifacts": [
    "generated-qiskit.py",
    "generated-openqasm.qasm",
    "counts.json",
    "counts.csv",
    "trace.json"
  ],
  "privateFieldsExcluded": [
    "providerCredentialId",
    "userEmail",
    "billingState",
    "adminNotes"
  ]
}
QFlow code lab screen used for a Grover sample workflow

Algorithm lab

Grover Search n=2

Small Grover workflow for classrooms and pilot teams that need a readable oracle, generated source, and a run trace.

Qubits

2

Operations

12

Shots

4,096

Route rationale

Local simulator first, provider preflight optional

Marked state amplified for lesson review

Counts

10188
113,633
00134
01141

Qiskit

from qiskit import QuantumCircuit

qc = QuantumCircuit(2, 2)
qc.h([0, 1])
qc.cz(0, 1)
qc.h([0, 1])
qc.z([0, 1])
qc.cz(0, 1)
qc.h([0, 1])
qc.measure([0, 1], [0, 1])

Evidence manifest

{
  "workflowId": "QF-SAMPLE-GROVER-N2",
  "runner": "qiskit-aer",
  "artifacts": [
    "oracle-notes.md",
    "generated-openqasm.qasm",
    "counts.json",
    "trace.json",
    "reviewer-note.md"
  ],
  "privateFieldsExcluded": [
    "providerCredentialId",
    "workspaceMembers",
    "teacherPrivateNotes"
  ]
}
Quantum chip close-up used for a QAOA Max-Cut sample workflow

Hybrid starter

QAOA Max-Cut 4-node

A four-node Max-Cut starter that makes parameterized circuit structure and benchmark evidence visible without claiming a finished optimizer suite.

Qubits

4

Operations

32

Shots

8,192

Route rationale

Simulator run with provider-fit notes; optimizer benchmark is marked as pilot scope

Top bitstrings exported with cost and parameter trace

Counts

1001931
10101,598
01011,642
0110988
0011612

Qiskit

from qiskit import QuantumCircuit

gamma = 0.72
beta = 0.39
qc = QuantumCircuit(4, 4)
qc.h(range(4))
for a, b in [(0, 1), (1, 2), (2, 3), (3, 0)]:
    qc.cx(a, b)
    qc.rz(2 * gamma, b)
    qc.cx(a, b)
qc.rx(2 * beta, range(4))
qc.measure(range(4), range(4))

Evidence manifest

{
  "workflowId": "QF-SAMPLE-QAOA-4",
  "runner": "qiskit-aer",
  "artifacts": [
    "graph.json",
    "parameters.json",
    "counts.json",
    "cost-trace.csv",
    "evidence-manifest.json"
  ],
  "privateFieldsExcluded": [
    "providerCredentialId",
    "budgetControls",
    "internalApproverNotes"
  ]
}
Quantum hardware context used for the QF-2048 supply-chain sample workflow

Pilot record

QF-2048 Supply-chain Optimization

A public pilot-style record that demonstrates brief, circuit, source, route rationale, simulator output, and reviewer packet in one artifact.

Qubits

8

Operations

24

Shots

4,096

Route rationale

Simulator evidence first, hardware route held for credentialed provider preflight

Counts and trace ready for review without exposing credentials

Counts

10100101177
111111112,857
00000000934
01011010128

Qiskit

from qiskit import QuantumCircuit

qc = QuantumCircuit(8, 8)
qc.h(range(8))
for control, target in [(0, 1), (2, 3), (4, 5), (6, 7)]:
    qc.cx(control, target)
qc.barrier()
qc.measure(range(8), range(8))

Evidence manifest

{
  "workflowId": "QF-2048",
  "runner": "qiskit-aer",
  "artifacts": [
    "brief.md",
    "generated-qiskit.py",
    "route-rationale.md",
    "counts.csv",
    "run-trace.json"
  ],
  "privateFieldsExcluded": [
    "providerCredentialId",
    "workspaceBilling",
    "adminNotes",
    "rawProviderResponse"
  ]
}