qiskit.providers.ibmq.runtime.ResultDecoder¶
-
class
ResultDecoder
[source]¶ Runtime job result decoder.
You can subclass this class and overwrite the
decode()
method to create a custom result decoder for the results of your runtime program. For example:class MyResultDecoder(ResultDecoder): @classmethod def decode(cls, data): decoded = super().decode(data) custom_processing(decoded) # perform custom processing
Users of your program will need to pass in the subclass when invoking
qiskit.providers.ibmq.runtime.RuntimeJob.result()
orqiskit.providers.ibmq.runtime.IBMRuntimeService.run()
.-
__init__
()¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
decode
(data)Decode the result data.
-