Skip to content
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

Complete 4,096-shot 00/11 distribution in a reviewer-safe result packet

Counts

112,072
002,024

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"
  ]
}
Inspect method, full counts, limits, and sources
QFlow Studio 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 11 state amplified across the complete ideal-simulator distribution

Counts

114,096

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"
  ]
}
Inspect method, full counts, limits, and sources
QFlow Studio 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

24

Shots

8,192

Route rationale

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

Complete fixed-parameter distribution exported with graph and parameter context

Counts

1001978
1010803
11001,001
11011
11111,341
00001,267
01101,051
0011953
0101797

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"
  ]
}
Inspect method, full counts, limits, and sources
QFlow Studio quantum hardware context used for the QF-2048 supply-chain sample workflow

Pilot record

QF-2048 Supply-chain Pilot Record

A public pilot-style route record that demonstrates brief, validation circuit, source, simulator baseline, route rationale, and reviewer packet without pretending the circuit solves the supply-chain problem.

Qubits

8

Operations

16

Shots

4,096

Route rationale

Seeded simulator route fixture first; optimization encoding and hardware route remain gated

Complete validation counts and trace ready for review without exposing credentials

Counts

111111112,004
000000002,092

Qiskit

from qiskit import QuantumCircuit

qc = QuantumCircuit(8, 8)
qc.h(0)
for target in range(1, 8):
    qc.cx(target - 1, target)
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"
  ]
}
Inspect method, full counts, limits, and sources