Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The NoiseModel of ibmq_guadalupe cannot be accessed #1896

Closed
KilianPoirier opened this issue Aug 17, 2023 · 1 comment · Fixed by #1912
Closed

The NoiseModel of ibmq_guadalupe cannot be accessed #1896

KilianPoirier opened this issue Aug 17, 2023 · 1 comment · Fixed by #1912
Assignees
Labels
bug Something isn't working

Comments

@KilianPoirier
Copy link

Informations

  • Qiskit Aer version: 0.12.2
  • Python version: 3.10.12
  • Operating system: Ubuntu 22.04

What is the current behavior?

When trying to import the noise model of ibmq_guadalupe, the following error occurs in thermal_relaxation_error():
NoiseError: 'Invalid T_2 relaxation time parameter: T_2 greater than 2 * T_1.'
This error looks similar to #1818

Steps to reproduce the problem

The error can be reproduced with the following code:

from qiskit_ibm_provider import IBMProvider
from qiskit_aer import AerSimulator
from qiskit_aer.noise import NoiseModel

provider = IBMProvider()
backend_device = provider.get_backend(name='ibmq_guadalupe')
noise_model = NoiseModel.from_backend(backend_device)

What is the expected behavior?

The code should return the noise model associated with the ibm_guadalupe machine. Unlike guadalupe, the other hardware do not produce an error when their noise model are imported.

Suggested solutions

It seems like the problem is coming from the characteristics of the machine itself, most likely T1 or T2 for one of the qubits is not calculated properly.

@KilianPoirier KilianPoirier added the bug Something isn't working label Aug 17, 2023
@itoko
Copy link
Contributor

itoko commented Aug 22, 2023

This is an oversight in #1818. T2 value is not properly truncated when it is None (i.e. inf) but T1 value is not None (ibmq_guadalupe is now reporting None for T2 of qubit 5). I'll fix it. Thank you for reporting it.

doichanj pushed a commit to itoko/qiskit-aer that referenced this issue Aug 25, 2023
…is deprecated; ibmq_athens is not available (Qiskit#1831)

* Fix REAM Qiskit#1896 qiskit.providers.ibmq is deprecated;

* In README example, simplify code to get aersim_backend

* Update README.md remove shots=1000

* use FakeManilaV2

* Update README.md import Fake backend in the beginning

* Update README.md remove unneeded IBM_Providers import.

---------

Co-authored-by: Hiroshi Horii <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants