Pieter Eendebak
Pieter Eendebak
This is a continuation of #104. The `Interpreter` is constructed many times when fitting with lmfit and this calls `make_symbol_table`. This PR improves performance by taking many checks on the...
The following minimal example results in the `qtconsole` restarting ``` import numpy as np remaining_parameters=[] cost_function_first = lambda x: cost_function_first(np.append(x, remaining_parameters)) cost_function_first([0.]) ``` with error message ``` Kernel died, restarting...
**Describe the bug** pygsti uses the deprecated and now removed method `numpy.isscalar`. numpy 1.23 has been released on pypi and pygsti stopped working. pygsti only uses `numpy.isscalar` at two locations...
When `Psi4` is not installed an exception occurs because the file `psi4` cannot be found. Cleanup of the process with `process.kill()` then generates another exception, because the variable `process` was...
#### References to other Issues or PRs This is an extension of #23832 #### Brief description of what is fixed or changed With the lazy loading mechanism introduced in #23832...
Importing qcodes with `import qcodes` takes a long time (> 2 seconds on the system tested). The import time can be analysed with tools like https://github.com/asottile/importtime-waterfall Several components could perhaps...
The project name from the SDK is hardcoded (with a uuid), see https://github.com/QuTech-Delft/quantuminspire/blob/dev/src/quantuminspire/qiskit/backend_qx.py#L182 Can we make the project name configurable? Either as an attribute of the backend instance, or a...
When submitting qiskit circuits the unit attribute of the delay is ignored. E.g. ``` c=QuantumCircuit() c.x(0) c.delay(10, unit='dt') c.delay(0.001, unit='s') # does not result in a 1 ms delay, but...
**Is your feature request related to a problem? Please describe.** The [SX gate](https://qiskit.org/documentation/stubs/qiskit.circuit.library.SXGate.html) is a common gate used in experiments. It should be supported by all QI backends as it...
**Feature or enhancement** `list.pop` currently calls `list_ass_slice` which contains some extra caculations not relevant for `list.pop`. With a direct implementation the cases for small lists is improved. **Pitch** The gain...