qiskit.providers.ibmq.runtime.RuntimeProgram¶
-
class
RuntimeProgram
(program_name, program_id, description, parameters=None, return_values=None, interim_results=None, max_execution_time=0, version='0', backend_requirements=None, creation_date='')[código fonte]¶ Class representing program metadata.
This class contains the metadata describing a program, such as its name, ID, description, etc.
You can use the
IBMRuntimeService
to retrieve the metadata of a specific program or all programs. For example:from qiskit import IBMQ provider = IBMQ.load_account() # To retrieve metadata of all programs. programs = provider.runtime.programs() # To retrieve metadata of a single program. program = provider.runtime.program(program_id='circuit-runner') print(f"Program {program.name} takes parameters {program.parameters}")
RuntimeProgram constructor.
- Parâmetros
program_name (
str
) – Program name.program_id (
str
) – Program ID.description (
str
) – Program description.parameters (
Optional
[List
]) – Documentation on program parameters.return_values (
Optional
[List
]) – Documentation on program return values.interim_results (
Optional
[List
]) – Documentation on program interim results.max_execution_time (
int
) – Maximum execution time.version (
str
) – Program version.backend_requirements (
Optional
[Dict
]) – Backend requirements.creation_date (
str
) – Program creation date.
-
__init__
(program_name, program_id, description, parameters=None, return_values=None, interim_results=None, max_execution_time=0, version='0', backend_requirements=None, creation_date='')[código fonte]¶ RuntimeProgram constructor.
- Parâmetros
program_name (
str
) – Program name.program_id (
str
) – Program ID.description (
str
) – Program description.parameters (
Optional
[List
]) – Documentation on program parameters.return_values (
Optional
[List
]) – Documentation on program return values.interim_results (
Optional
[List
]) – Documentation on program interim results.max_execution_time (
int
) – Maximum execution time.version (
str
) – Program version.backend_requirements (
Optional
[Dict
]) – Backend requirements.creation_date (
str
) – Program creation date.
Methods
__init__
(program_name, program_id, description)RuntimeProgram constructor.
to_dict
()Convert program metadata to dictionary format.
Attributes
Backend requirements.
Program creation date.
Program description.
Program interim result definitions.
Maximum execution time in seconds.
Program name.
Program parameter definitions.
Program ID.
Program return value definitions.
Program version.
-
property
backend_requirements
¶ Backend requirements.
- Tipo de retorno
Dict
- Retorna
Backend requirements for this program.
-
property
creation_date
¶ Program creation date.
- Tipo de retorno
str
- Retorna
Program creation date.
-
property
description
¶ Program description.
- Tipo de retorno
str
- Retorna
Program description.
-
property
interim_results
¶ Program interim result definitions.
- Tipo de retorno
List
[ProgramResult
]- Retorna
Interim result definitions for this program.
-
property
max_execution_time
¶ Maximum execution time in seconds.
A program execution exceeding this time will be forcibly terminated.
- Tipo de retorno
int
- Retorna
Maximum execution time.
-
property
name
¶ Program name.
- Tipo de retorno
str
- Retorna
Program name.
-
property
parameters
¶ Program parameter definitions.
- Tipo de retorno
List
[ProgramParameter
]- Retorna
Parameter definitions for this program.
-
property
program_id
¶ Program ID.
- Tipo de retorno
str
- Retorna
Program ID.
-
property
return_values
¶ Program return value definitions.
- Tipo de retorno
List
[ProgramResult
]- Retorna
Return value definitions for this program.
-
to_dict
()[código fonte]¶ Convert program metadata to dictionary format.
- Tipo de retorno
Dict
- Retorna
Program metadata in dictionary format.
-
property
version
¶ Program version.
- Tipo de retorno
str
- Retorna
Program version.