Portuguese, Brazilian
Idiomas
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.ibmq.random.IBMQRandomService

class IBMQRandomService(provider, access_token)[código fonte]

Random number services for an IBM Quantum Experience account provider.

Represent a namespace for random number services available to this provider. An instance of this class is used as an attribute to the AccountProvider class. This allows a convenient way to query for all services or to access a specific one:

random_services = provider.random.services()
extractor = provider.random.get_extractor('cqc_extractor')
extractor = provider.random.cqc_extractor  # Short hand for above.

IBMQRandomService constructor.

Parâmetros
  • provider (AccountProvider) – IBM Quantum Experience account provider.

  • access_token (str) – IBM Quantum Experience access token.

__init__(provider, access_token)[código fonte]

IBMQRandomService constructor.

Parâmetros
  • provider (AccountProvider) – IBM Quantum Experience account provider.

  • access_token (str) – IBM Quantum Experience access token.

Methods

__init__(provider, access_token)

IBMQRandomService constructor.

get_service(name)

Return the random number service with the given name.

services()

Return all random number services available to this account.

get_service(name)[código fonte]

Return the random number service with the given name.

Parâmetros

name (str) – Name of the service.

Tipo de retorno

BaseRandomService

Retorna

Service with the given name.

Levanta

IBMQError – If the service cannot be found.

services()[código fonte]

Return all random number services available to this account.

Tipo de retorno

List[BaseRandomService]