Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Changelog

- Allow `np.ndarray` when writing QAM memory. Disallow non-integer and non-float types.
- Fix typo where `qc.compiler.calibration_program` should be `qc.compiler.get_calibration_program()`.
- Fix docs typo in `start.rst`, where an extra parentheses was present in a python code block (@ThomasMerkh).
- Fixed typo where `scale` was being used as the `phase` in generation of several waveforms.

[v3.0.0](https://github.com/rigetti/pyquil/releases/tag/v3.0.0)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ allows us to declare classical memory regions so that we can receive data from t

with local_forest_runtime():
qvm = get_qc('9q-square-qvm')
bitstrings = qvm.run(qvm.compile(prog))).readout_data.get("ro")
bitstrings = qvm.run(qvm.compile(prog)).readout_data.get("ro")

Next, let's construct our Bell State.

Expand Down