grove icon indicating copy to clipboard operation
grove copied to clipboard

Quantum algorithms built using pyQuil.

Results 50 grove issues
Sort by recently updated
recently updated
newest added

Currently, numpy is required for building this package. As the package is pure python, I'm not sure if that's really needed? https://github.com/rigetti/grove/blob/dc6bf6ec63e8c435fe52b1e00f707d5ce4cdb9b3/setup.py#L46-L48

The following example breaks Deutsch-Josza for two-qubit case with error: ``` Traceback (most recent call last): File "./deutsch-josza.py", line 15, in is_constant = dj.is_constant(qvm,qubit_bitmap) File "/Users/ruslan/anaconda3/envs/pyquil/lib/python3.6/site-packages/grove/deutsch_jozsa/deutsch_jozsa.py", line 59, in is_constant...

I am using Grove's VQE to run on a QVM with a noise model but I get a TypeError when I run it. Below is an example of how one...

GitLab CI Project: https://gitlab.com/rigetti/grove

qvm argname was changed to qc in a later iteration of the vqe_run() in class VQE

When running the code snippets in grove/docs/vqe.rst the line ``` result = vqe_inst.vqe_run(small_ansatz, hamiltonian, initial_angle, samples=10000, qvm=noisy_qvm)``` Raises the following exception: ```TypeError: vqe_run() got an unexpected keyword argument 'qvm'``` Similarly,...

HI, I am trying to run this notebook : https://github.com/rigetti/grove/blob/master/examples/Tomography.ipynb I get error here ImportError Traceback (most recent call last) in 12 13 from pyquil.gates import CZ, RY ---> 14...

Grove QAOA should work on both the QVM and the QPU. This appears to largely be the case, but the code was written with the QVM in mind: function arguments/docstrings...