Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A minimal example using Forest SDK to create a 2-qubit circuit, apply gates, and simulate measurements.
from pyquil import Program, get_qc
from pyquil.gates import H, CNOT, MEASURE
# Create a program
p = Program()
ro = p.declare('ro', 'BIT', 2)
# Apply gates
p += H(0)
p += CNOT(0, 1)
# Measure qubits
p += MEASURE(0, ro[0])
p += MEASURE(1, ro[1])
# Run on QVM simulator
qc = get_qc('2q-qvm')
result = qc.run(p)
print(result)Forest SDK is Rigetti’s quantum software development kit that enables writing, simulating, compiling, and executing quantum programs using the Quil instruction language.
Origin & Creator
Forest SDK is developed by Rigetti Computing as part of their full-stack quantum computing platform. Forest 1.0 was publicly announced by Rigetti. :contentReference[oaicite:0]{index=0}
Industrial Note
Forest SDK is used in research on hybrid quantum‑classical algorithms, variational optimization, and benchmarking on Rigetti’s superconducting qubit hardware, as well as in teaching quantum programming.