Skip to content
#

quil

Here are 66 public repositories matching this topic...

stylewarning
stylewarning commented Nov 23, 2021

Write a test which does a Rabi experiment and a sine-curve fit on successive RX angles. Something like:

data = []
angles = linspace([0, 2pi], 25)
num_shots = 100
for angle in angles:
    p = RX(angle) 0
    histogram = qvm(p, shots=num_shots)
    data += histogram[1]/num_shots
fit, error = fit_sinusoid(angles, data)
assert error < some_threshold

Intention is to emulate a so

Improve this page

Add a description, image, and links to the quil topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the quil topic, visit your repo's landing page and select "manage topics."

Learn more