Guen Prawiroatmodjo
Guen Prawiroatmodjo
**Describe the bug** When I type in `from qsharp.chemistry import load_broo` and hit the Tab key for suggestions, the startup script in `qsharp/__init__.py` is run automatically. **To Reproduce** 1. Install...
**Describe the bug** Both @dgwvfxn and I noticed that when running a Jupyter notebook that is using the `qsharp` Python package, and after running a quantum algorithm in the notebook,...
When running `.simulate()` or `.__call__` on a `QSharpModuleFinder` object with positional arguments, it returns this error: ``` __call__() takes 1 positional argument but 2 were given ``` because `.simulate()` only...
**Describe the bug** The following code: ```python import qsharp qsharp.packages.add("Microsoft.Quantum.Chemistry") qsharp.reload() from Microsoft.Quantum.Chemistry.JordanWigner.VQE import EstimateEnergy ``` throws this error: ``` ModuleNotFoundError: No module named 'Microsoft' ``` **Expected behavior** I would...
Sharing on behalf of @amirebrahimi: I'm getting an error when calling `job.result()` from ionq.simulator. Details in thread. ```python --------------------------------------------------------------------------- JSONDecodeError Traceback (most recent call last) /tmp/ipykernel_15433/1564545644.py in 1 # print(result)...
When running the Azure Quantum sample [VQE](https://github.com/microsoft/Quantum/tree/feature/samples-gallery/samples/azure-quantum/variational-quantum-eigensolver), running on the Quantinuum emulator raises the following warning: ``` shots is not a known attribute of class and will be ignored ```...
`max_shots` for the IonQ simulator should be set to `None`. It is currently set to 1 and causes the following error when using `qiskit-aqua`: ```python --------------------------------------------------------------------------- AquaError Traceback (most recent...
@Saketh-Chandra tried to submit a job to the Honeywell API validator and was not able to run the below code: ```python backend.run(circuit, memory=True) ``` This threw an error saying that...
Currently, to submit multiple circuits, users have to submit each circuit individually, e.g. ```python jobs = [] for circuit in circuits: jobs.append(backend.run(circuit, shots=N)) results = [] for job in jobs:...
The sample in this notebook: https://github.com/microsoft/qdk-python/blob/main/examples/chemistry/Molecule.ipynb is loading the wrong ansatz. The stateType is read from the Broombridge file but it is set to `2` (Sparse_Multi_Configurational) instead of `3` (UCCSD).