azure-quantum-python
azure-quantum-python copied to clipboard
The azure-quantum python package submits jobs to the Azure Quantum service.
I have a workspace with the Microsoft QIO provider enabled, and when running: ``` workspace.get_targets() ``` not all of the solvers are listed. This can be confusing as both parameterized...
Our CI normally runs unit-tests in recorded mode and run them live only during releases. Recently, we've found multiple tests failing during release namely because we did changes that work...
I want to propose an enhancement to the `azure.quantum` python API: support Q# Jobs submission to Azure Quantum. Currently, the official ways to submit Q# jobs to Azure Quantum are:...
`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:...
Starting from a clean install of the qdk, there seemed a few packages missing in the sample https://github.com/microsoft/qdk-python/blob/main/examples/chemistry/Molecule.ipynb Specifically, I needed to install the following packages to get the notebook...
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).
Update `QuantumTestBase` to support repeated calls in unit test playback mode. See note here: https://github.com/microsoft/qdk-python/blob/f7e944d6f674e5aa63f63f8f0d3c84ede2a73502/azure-quantum/tests/unit/test_job.py#L245