Guen Prawiroatmodjo

Results 35 issues of Guen Prawiroatmodjo

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

enhancement
help wanted

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

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

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

Use MyPy and PyLint to automatically check for code formatting and type hint errors in CI/CD.

enhancement