Skip to content

Bloqade

BloqadeDeviceRoute

BloqadeDeviceRoute(parent=None)

Bases: Builder

Source code in src/bloqade/builder/base.py
def __init__(
    self,
    parent: Optional["Builder"] = None,
) -> None:
    self.__parent__ = parent

python

python()

Specify the Bloqade Python backend.

  • Possible Next Steps:
    • ...python().run(shots): to submit to the python emulator and await results
Source code in src/bloqade/builder/backend/bloqade.py
def python(self):
    """
    Specify the Bloqade Python backend.

    - Possible Next Steps:
        - `...python().run(shots)`:
            to submit to the python emulator and await results
    """
    return self.parse().bloqade.python()

BloqadeService

BloqadeService(parent=None)

Bases: Builder

Source code in src/bloqade/builder/base.py
def __init__(
    self,
    parent: Optional["Builder"] = None,
) -> None:
    self.__parent__ = parent

bloqade property

bloqade

Specify the Bloqade backend.

  • Possible Next Steps:
    • ...bloqade.python(): target submission to the Bloqade python backend
    • ...bloqade.julia(): (CURRENTLY NOT IMPLEMENTED!)target submission to the Bloqade.jl backend