sierra.plugins.engine.ros1robot.plugin#
Plugin for ROS1-based robot Engines.
Classes#
High level experiment configuration for the engine. |
|
Generate the commands to run a single Experimental Run. |
|
Generate the commands to run the Experiment in stage 2. |
Functions#
|
Configure cmdline args after parsing for the ROS1+Robot engine. |
|
Verify execution environment in stage 2 for ROS1+Robot. |
Module Contents#
- class sierra.plugins.engine.ros1robot.plugin.ExpConfigurer(cmdopts: sierra.core.types.Cmdopts)[source]#

High level experiment configuration for the engine.
Relaxing some ssh checks.
Syncing files to robots.
- for_exp(exp_input_root: pathlib.Path) None[source]#
Configure an Experiment.
- Parameters:
exp_input_root -- Absolute path to the input directory for the experiment.
- for_exp_run(exp_input_root: pathlib.Path, run_output_root: pathlib.Path) None[source]#
Configure an Experimental Run.
- Parameters:
exp_input_root -- Absolute path to the input directory for the experiment.
run_output_root -- Absolute path to the output directory for the experimental run.
- parallelism_paradigm() str[source]#
Return the parallelism paradigm for this engine.
Must return one of
per-batch,per-exp, orper-run. See Execution Model for full details and guidance on which to choose.
- class sierra.plugins.engine.ros1robot.plugin.ExpRunShellCmdsGenerator(cmdopts: sierra.core.types.Cmdopts, criteria: sierra.core.variables.batch_criteria.XVarBatchCriteria, exp_num: int, n_agents: int | None)[source]#

Generate the commands to run a single Experimental Run.
- exec_run_cmds(host: str, input_fpath: pathlib.Path, run_num: int) list[sierra.core.types.ShellCmdSpec][source]#
Generate the command to execute a single Experimental Run.
Called during stage 1. Typically the simulator launch command or the robot controller startup command. Runs in stage 2 after
pre_run_cmds()for each run.- Parameters:
host -- The machine these commands will run on.
input_fpath -- Absolute path to the input/launch file for the run.
run_num -- The 0-based ID of the experimental run.
- post_run_cmds(host: str, run_output_root: pathlib.Path) list[sierra.core.types.ShellCmdSpec][source]#
Generate cleanup commands for after an Experimental Run.
Called during stage 1. Commands run in stage 2 in the same sub-shell as the pre- and exec-run commands: stopping background processes, collecting remote outputs, etc.
- Parameters:
host -- The machine these commands will run on.
run_output_root -- Absolute path to the output directory for the run.
- pre_run_cmds(host: str, input_fpath: pathlib.Path, run_num: int) list[sierra.core.types.ShellCmdSpec][source]#
Generate setup commands for an Experimental Run.
Called during stage 1. Commands run in stage 2 before each run: launching per-run daemons, background processes, or anything that should not be shared between runs. The
hostargument identifies which machine these commands will execute on.- Parameters:
host -- The machine these commands will run on.
input_fpath -- Absolute path to the input/launch file for the run.
run_num -- The 0-based ID of the experimental run.
- class sierra.plugins.engine.ros1robot.plugin.ExpShellCmdsGenerator(cmdopts: sierra.core.types.Cmdopts, exp_num: int)[source]#

Generate the commands to run the Experiment in stage 2.
- exec_exp_cmds(exec_opts: sierra.core.types.StrDict) list[sierra.core.types.ShellCmdSpec][source]#
Generate the command to execute an Experiment.
Typically a single GNU parallel invocation, but not required to be. Called during stage 2. Runs in the same sub-shell as the pre- and post-exp commands.
Note
The return value of this method is ignored when defined on an engine plugin. Execution environment plugins are always responsible for the actual parallel dispatch.
- Parameters:
exec_opts --
A dictionary containing:
jobroot_path- Root directory for the batch experiment.exec_resume- Whether this resumes a previously started experiment.n_jobs- How many parallel jobs are allowed per node.joblog_path- Logfile for the experiment run command (distinct from Project code output).cmdfile_stem_path- Path to the cmdfile, excluding extension.cmdfile_ext- Extension of the cmdfile.nodefile- Path to the file containing compute resources for SIERRA to use. See--nodefileandSIERRA_NODEFILEfor details.
- post_exp_cmds() list[sierra.core.types.ShellCmdSpec][source]#
Generate cleanup commands for after an Experiment.
Called during stage 1. Commands run after all Experimental Runs in the experiment have finished but before the next experiment starts: stopping background processes, visualization daemons, etc. Runs in the same sub-shell as the pre- and exec-exp commands.
- pre_exp_cmds() list[sierra.core.types.ShellCmdSpec][source]#
Generate setup commands for an Experiment.
Called during stage 1. Commands run before any experimental run in the experiment starts, in a new sub-shell: launching daemons, background processes, setting environment variables, etc. that should be common to all runs within the experiment.
- sierra.plugins.engine.ros1robot.plugin.cmdline_postparse_configure(env: str, args: argparse.Namespace) argparse.Namespace[source]#
Configure cmdline args after parsing for the ROS1+Robot engine.
Checks for:
List of robot IPs via
--nodefileorSIERRA_NODEFILE.
- sierra.plugins.engine.ros1robot.plugin.execenv_check(cmdopts: sierra.core.types.Cmdopts) None[source]#
Verify execution environment in stage 2 for ROS1+Robot.
Check for:
ROS_VERSIONis ROS1.ROS_DISTROis {kinetic/noetic}.gazebo can be found and the version is supported.