boulderopalscaleup.runtime.Runtime.add_system

Runtime.add_system(system)

Register a system with this runtime.

Accepts either a System instance directly or a SystemInfo description object; in the latter case, the system is built via SystemInfo.build_system().

Parameters

system (System | SystemInfo) – The system or system-information object to register.

Raises

  • RuntimeError – If the runtime is already closed.
  • ValueError – If the system’s execution mode does not match the runtime’s execution mode.

Was this useful?