pynn_brainscales.brainscales2.RunCommand

class pynn_brainscales.brainscales2.RunCommand(value)

Bases: enum.Enum

Command specifying the type of run to be performed in pynn.run()

Parameters
  • prepare – Command that only induces all preparatory steps for the hardware backend, e.g. place&route of network graph or execution of calibration.

  • append – Command that induces the scheduling of an experiment snippet for the system in the currently defined state for a certain runtime.

  • execute – Command that induces a hardware run. Executes the already scheduled experiment and optionally append one last experiment snippet.

__init__()

Initialize self. See help(type(self)) for accurate signature.

Attributes

APPEND

EXECUTE

PREPARE

APPEND = 2
EXECUTE = 3
PREPARE = 1