Skip to content
#

quil

Here are 66 public repositories matching this topic...

stylewarning
stylewarning commented Nov 19, 2021

right now, absolute jumps are conflated in the label object here. I'd prefer we instead introduce a new object called absolute-program-location or something like that. (I don't want to use "address" only because it feels too dishonest.) If we do this, then we'd change patch-labels to not overwrite these label objects, and we'

enhancement good first issue
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

enhancement good first issue

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