All Questions
Tagged with programming noise
31 questions
2
votes
1
answer
73
views
BP decoders for qLDPC codes
Do BP (BP-OSD, BP-LSD) decoders process 3-dimensional graphs of a simple noise model, where the third dimension is the time dimension, like how the MWPM decoder works for surface codes? Is there a ...
2
votes
0
answers
51
views
Applying 2-qubit noise to a multi qubit system using local operations in Python
I am trying to create a simulation of 2-qubit dephasing noise that acts on the first two qubits of a multi qubit system. I would like to do this locally rather than expanding my kraus operators into $...
0
votes
1
answer
377
views
Using Noise Model of a real hardware on qiskit simulators
I am trying to understand how to use the noise model of real hardware. Below is the part of the code I have written with the help of sample codes from these links:
qiskit.github.io/qiskit-aer/apidocs/...
0
votes
0
answers
327
views
Qiskit Noisy simulator sample code or documentation
I have to run some quantum circuits on Noisy simulator of qiskit? I tried searching some noisy simulator of qiskit but could not find anything. It would be great if someone can direct me to a qiskit ...
1
vote
0
answers
380
views
Is there a way to implement a noisy CNOT gate using CUGate in Qiskit
Wondering if there's a way to implement the noisy version of CNOT (or CX) gate via CUGate using qiskit library for a given fidelity p?
4
votes
0
answers
40
views
How does it work QasmSimulator with the option "density matrix"?
I am making some simulations on IBM Quantum Lab and as backend I tried to use QasmSimulator(method = "density_matrix") in order to simulate noise. I wanted to know how this method works in ...
1
vote
1
answer
266
views
Fail to add amplitude damping error to NoiseModel
I am reading a book named Learn Quantum Computing with Python and IBM Quantum Experience authored by Robert Loredo. When I tried to run the code on Chapter 11, I followed the instruction and wroted ...
1
vote
1
answer
565
views
Implementing Noise in Pennylane (using qiskit.aer)
I want to implement noise in Pennylane using qiskit as a plug-in. I found this tutorial from Pennylane. But, when testing it the bit-flip error seems to have no effect at all.
Here, I made some slight ...
0
votes
1
answer
120
views
Error Model on id gate, is not giving any error
I am trying to play with NoiseModel of qiskit, and I noticed that error on id gate is not giving any error results, while error ...
5
votes
1
answer
745
views
Incorporating idling errors while using stim
Is there a smart way to incorporate idling errors for a quantum error correction code using the open-source tool stim (preferably using the tableau simulator)? I have perused the code repository, as ...
2
votes
0
answers
43
views
How to turn a 'term' in a QuantumError into a QuantumError?
A QuantumError class may have many terms, and we can use .error_term(position) to have a look at each term. But it returns a list instead of another QuantumError ...
3
votes
1
answer
93
views
noisy circuit by openfermion
I am working on designing quantum error mitigation algorithms for simulating chemical systems. Therefore, a necessary component is to add noisy to the ideal circuit when using a quantum simulator. But ...
4
votes
2
answers
512
views
2
votes
1
answer
256
views
Bernstein-Vazirani Gate IBM Q Noise
When running the attached Bernstein-Vazirani gate on IBM Q, with 1024 shots on ibmq_16_melbourne, I receive the expected result of "00110" with 26.563% success. I notice that there is a lot ...
4
votes
2
answers
780
views
How to intentionally add noise to a Qiskit circuit?
I am attempting to intentionally add noise to my qiskit circuit by applying n-pairs of CNOT gates. The effect of this should be to yield the same result of my baseline (no pairs of CNOT gates applied) ...