We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Deprecation warning
import qiskit from qiskit_experiments.library import StateTomography # For simulation from qiskit.providers.aer import AerSimulator import numpy as np qc_bell = qiskit.QuantumCircuit(2) qc_bell.h(0) qc_bell.cx(0, 1) #Simulate the outcome qc_bell.save_statevector() qobj = qiskit.assemble(qc_bell) sim = qiskit.Aer.get_backend('aer_simulator') sim.options.max_parallel_experiments=3 # Commenting out line this removes warning result = sim.run(qobj).result() # QST Experiment qstexp1 = StateTomography(qc_bell) shotVal = 1e2 qstdata1 = qstexp1.run(sim, shots=shotVal, seed_simulation=100).block_for_results()
No warning
Warning suggests use omp_set_max_active_levels instead.
omp_set_max_active_levels instead.
The text was updated successfully, but these errors were encountered:
omp_set_max_active_levels
omp_set_nested
Successfully merging a pull request may close this issue.
Informations
What is the current behavior?
Deprecation warning
Steps to reproduce the problem
What is the expected behavior?
No warning
Suggested solutions
Warning suggests use
omp_set_max_active_levels instead.
The text was updated successfully, but these errors were encountered: