Actually bump ignis version in benchmarks (Qiskit/qiskit-metapackage#1336)

In Qiskit/qiskit-metapackage#1324 as part of the updates to the randomized benchmarking
benchmarks the version string in the benchmark class was bumped to
the latest ignis version to do 2 things, first indicate the benchmark
code had significantly changed to differentiate new results from old
ones and second to update the ignis version to the latest release in the
benchmarks. However on the second point the ignis version installed was
never actually updated. This commit fixes this oversight and updates the
ignis version in the asv config and also updates the state tomography
benchmark version to indicate that we're running with ignis 0.6.0 now
instead of 0.2.0 that we had been using previously.
This commit is contained in:
Matthew Treinish 2021-09-22 10:59:36 -04:00 committed by GitHub
parent e32a552d09
commit 66e661f7ce
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
"python -mpip install seaborn",
"python -mpip install pygments",
"python -mpip install {wheel_file}",
"python -mpip install -U qiskit-ignis==0.2.0",
"python -mpip install -U qiskit-ignis==0.6.0",
"python -mpip install -U python-constraint"
],
"uninstall_command": [

View File

@ -24,7 +24,7 @@ from qiskit.quantum_info import state_fidelity
class StateTomographyBench:
params = [2, 3, 4, 5]
param_names = ['n_qubits']
version = '0.2.0'
version = '0.6.0'
timeout = 120.0
def setup(self, _):