qiskit-jku-provider icon indicating copy to clipboard operation
qiskit-jku-provider copied to clipboard

A local provider which allows Qiskit to use a decision-diagrams quantum simulator from JKU

Results 7 qiskit-jku-provider issues
Sort by recently updated
recently updated
newest added

`qiskit-jku-provider` depends on `qiskit-terra (>=0.8)` https://www.wheelodex.org/projects/qiskit-jku-provider/ which is reaching EoL: > [!IMPORTANT] > **The package `qiskit-terra` is not going to be updated after August 15th, 2024**. Since Qiskit 0.44 (released...

This project seems superseded by https://github.com/cda-tum/ddsim. If so, a note on the README file could help users to find the current project and the repo can be archived.

documentation

### Summary Fixed Qiskit JKU Provider and introduced asv for benchmarking. ### Details and comments * fixed mandatory coupling field * added alternative to build * fixed deprecated access to...

Hi, would it be possible to provide recommended documentation for how to build the JKU provider directly from its repository? Right now, `$ cd qiskit-jku-provider` `$ pip install -r requirements-dev.txt...

documentation

This is not needed for the first release but it would be nice to have.

enhancement

If i run ``` qubits_num = 30 qr = QuantumRegister(qubits_num) cr = ClassicalRegister(qubits_num) qc = QuantumCircuit(qr, cr) qc.h(qr[0]) qc.cx(qr[0], qr[1]) qc.measure(qr[0], cr[0]) qc.measure(qr[1], cr[1]) qc.measure(qr[2], cr[2]) jku_backend = JKUProvider().get_backend('local_statevector_simulator_jku') job...

enhancement

The current way Qiskit handles noises is by supplying a **noise model** given as part of the qobj file, with the following structure: ``` "config": { "noise_model": { "errors": [...

enhancement