azure-quantum-python icon indicating copy to clipboard operation
azure-quantum-python copied to clipboard

The azure-quantum python package submits jobs to the Azure Quantum service.

Results 70 azure-quantum-python issues
Sort by recently updated
recently updated
newest added

It could be useful to access and read out the remaining Workspace quota from the `azure-quantum` package. for quotas, we do have a dataplane API, it's the one the portal...

enhancement
azure-quantum
python

## Consistent behavior for service.run() job When using service.run(), we see that the resulting output is consistent across providers: #### IonQ ![image](https://user-images.githubusercontent.com/20933017/151054620-4cc8161b-aa05-497c-a67f-dd5650ade204.png) #### Honeywell ![image](https://user-images.githubusercontent.com/20933017/151054559-a08911be-55eb-4176-9292-7730d1298cff.png) Calling service.run against different providers...

bug
enhancement
help wanted
azure-quantum
python
cirq

See this commit: https://github.com/microsoft/qdk-python/pull/218/commits/1b9d8d339c306a29cda05c3729a1f95876dee66b Workaround: https://github.com/microsoft/qdk-python/pull/218/commits/b96eaf472fdbc3cd9eaffd3daf7d32acdad95549 azure-core 1.21.2 checks the http response if the payload size matches the size in the header. since we have a logic in VCR to...

bug
azure-quantum
dependencies

@vxfield reported that the JSMol widget did not work for him: ![MicrosoftTeams-image (1)](https://user-images.githubusercontent.com/4041805/111707329-14308100-8801-11eb-86b1-08c3f5f841f8.png) We will need to investigate this further but it might be related to the JS libraries not...

bug

I'm new to this set of packages, and from looking at the README it wasn't entirely obvious to me how they work together, so I thought it might be useful...

Qiskit supports a `BackendProperties` model that includes information about the quantum device, such as numbers of qubits and T1/T2. It would be great to support that here for the IonQ...

enhancement
azure-quantum
qiskit

**Bug** When fetching the job results after getting a job via `Workspace.list_jobs`, the client throws an error: ``` jobs = workspace.list_jobs("My_Job_") job = jobs[0] job.get_results() ``` ``` ClientAuthenticationError: Server failed...

bug
azure-quantum

`Workspace.list_jobs()` returns `Job`s with an authentication header with the wrong timestamp. Steps to reproduce: ```python jobs = workspace.list_jobs() jobs[0].get_results() --------------------------------------------------------------------------- ClientAuthenticationError Traceback (most recent call last) /tmp/ipykernel_24100/2000951921.py in ----> 1...

bug

Currently, async I/O functionality is only tested in recording. We need to enable them for live tests, both the ones run in the azure-quantum-clients pipeline, but also the ones run...

@vtomole pointed out that the `Job.__repr__` method should be modified according to the following: > The class has a __repr__ method that produces a python expression that evaluates to an...

enhancement
good first issue
help wanted