qiskit.providers.ibmq.managed.ManagedResults¶
-
class
ManagedResults
(job_set, backend_name, success)[ソース]¶ Results managed by the Job Manager.
This class is a wrapper around the
Result
class and provides the same methods. Please refer to theResult
class for more information on the methods.ManagedResults constructor.
- パラメータ
job_set (
ManagedJobSet
) – Managed job set for these results.backend_name (
str
) – Name of the backend used to run the experiments.success (
bool
) –True
if all experiments were successful and results available.False
otherwise.
-
backend_name
¶ Name of the backend used to run the experiments.
-
success
¶ Whether all experiments were successful.
-
__init__
(job_set, backend_name, success)[ソース]¶ ManagedResults constructor.
- パラメータ
job_set (
ManagedJobSet
) – Managed job set for these results.backend_name (
str
) – Name of the backend used to run the experiments.success (
bool
) –True
if all experiments were successful and results available.False
otherwise.
-
backend_name
¶ Name of the backend used to run the experiments.
-
success
¶ Whether all experiments were successful.
Methods
__init__
(job_set, backend_name, success)ManagedResults constructor.
Combine results from all jobs into a single Result.
data
(experiment)Get the raw data for an experiment.
get_counts
(experiment)Get the histogram data of an experiment.
get_memory
(experiment)Get the sequence of memory states (readouts) for each shot.
get_statevector
(experiment[, decimals])Get the final statevector of an experiment.
get_unitary
(experiment[, decimals])Get the final unitary of an experiment.
-
combine_results
()[ソース]¶ Combine results from all jobs into a single Result.
注釈
Since the order of the results must match the order of the initial experiments, job results can only be combined if all jobs succeeded.
- 戻り値の型
Result
- 戻り値
- A
Result
object that contains results from all jobs.
- A
- 例外
IBMQManagedResultDataNotAvailable – If results cannot be combined because some jobs failed.
-
data
(experiment)[ソース]¶ Get the raw data for an experiment.
- パラメータ
experiment (
Union
[str
,QuantumCircuit
,Schedule
,int
]) –Retrieve result for this experiment. Several types are accepted for convenience:
str: The name of the experiment.
QuantumCircuit: The name of the circuit instance will be used.
Schedule: The name of the schedule instance will be used.
int: The position of the experiment.
- 戻り値の型
Dict
- 戻り値
Refer to the
Result.data()
for information on return data.- 例外
IBMQManagedResultDataNotAvailable – If data for the experiment could not be retrieved.
IBMQJobManagerJobNotFound – If the job for the experiment could not be found.
-
get_counts
(experiment)[ソース]¶ Get the histogram data of an experiment.
- パラメータ
experiment (
Union
[str
,QuantumCircuit
,Schedule
,int
]) – Retrieve result for this experiment, as specified bydata()
.- 戻り値の型
Dict
[str
,int
]- 戻り値
Refer to the
Result.get_counts()
for information on return data.- 例外
IBMQManagedResultDataNotAvailable – If data for the experiment could not be retrieved.
IBMQJobManagerJobNotFound – If the job for the experiment could not be found.
-
get_memory
(experiment)[ソース]¶ Get the sequence of memory states (readouts) for each shot. The data from the experiment is a list of format [『00000』, 『01000』, 『10100』, 『10100』, 『11101』, 『11100』, 『00101』, …, 『01010』]
- パラメータ
experiment (
Union
[str
,QuantumCircuit
,Schedule
,int
]) – Retrieve result for this experiment, as specified bydata()
.- 戻り値の型
Union
[list
,ndarray
]- 戻り値
Refer to the
Result.get_memory()
for information on return data.- 例外
IBMQManagedResultDataNotAvailable – If data for the experiment could not be retrieved.
IBMQJobManagerJobNotFound – If the job for the experiment could not be found.
-
get_statevector
(experiment, decimals=None)[ソース]¶ Get the final statevector of an experiment.
- パラメータ
experiment (
Union
[str
,QuantumCircuit
,Schedule
,int
]) – Retrieve result for this experiment, as specified bydata()
.decimals (
Optional
[int
]) – The number of decimals in the statevector. IfNone
, skip rounding.
- 戻り値の型
List
[complex
]- 戻り値
Refer to the
Result.get_statevector()
for information on return data.- 例外
IBMQManagedResultDataNotAvailable – If data for the experiment could not be retrieved.
IBMQJobManagerJobNotFound – If the job for the experiment could not be found.
-
get_unitary
(experiment, decimals=None)[ソース]¶ Get the final unitary of an experiment.
- パラメータ
experiment (
Union
[str
,QuantumCircuit
,Schedule
,int
]) – Retrieve result for this experiment, as specified bydata()
.decimals (
Optional
[int
]) – The number of decimals in the unitary. IfNone
, skip rounding.
- 戻り値の型
List
[List
[complex
]]- 戻り値
Refer to the
Result.get_unitary()
for information on return data.- 例外
IBMQManagedResultDataNotAvailable – If data for the experiment could not be retrieved.
IBMQJobManagerJobNotFound – If the job for the experiment could not be found.