Skip to content

submit

submit

Submit a configured execution through the existing solver and providers.

submit(name: str = typer.Argument(...), yaml_path: Path = typer.Argument(..., exists=True, dir_okay=False), overrides: list[str] | None = typer.Argument(None), dispatch_config: Path | None = typer.Option(None, '--dispatch-config', '-d'), project: str = typer.Option('general', '--project', '-p'), group: str = typer.Option('default', '--group', '-g'), fresh: bool = typer.Option(False, '--fresh', help='Generate a fresh run nonce to prevent job resumption even if available.'), chip: str | None = typer.Option(None, '--chip'), n_chips: int | None = typer.Option(None, '--n_chips', '--n-chips', '-n', min=0), mem: str | None = typer.Option(None, '--mem'), cpu: int | None = typer.Option(None, '--cpu', min=1), cluster: str | None = typer.Option(None, '--cluster'), exclude_cluster: str | None = typer.Option(None, '--exclude-cluster'), extras: list[str] | None = typer.Option(None, '--extras', help='Add a worker dependency group. Repeatable.'), env: list[str] | None = typer.Option(None, '--env', help='Override a worker environment variable: KEY=VALUE. Repeatable.'), dry_run: bool = typer.Option(False, '--dry-run')) -> None

Run every step of a combobulation within one allocation.