
NeMo AutoModel Launcher
OfficialFreeEasily configure NeMo AutoModel job launches across platforms.
Free · Opens the source repo
What NeMo AutoModel Launcher does
The NeMo AutoModel Launcher is designed to simplify the configuration of job launches for NVIDIA's NeMo AutoModel across various execution environments, including interactive runs, Slurm clusters, and SkyPilot cloud platforms. This skill provides a structured approach to setting up the necessary YAML configurations for each launch method, ensuring that users can efficiently manage their training jobs with minimal hassle. It is particularly useful for developers and researchers working with machine learning models who require a reliable way to orchestrate their training processes.
With support for three primary launch methods, users can choose between interactive execution for quick testing and debugging, Slurm for high-performance computing (HPC) environments, and SkyPilot for cloud-agnostic deployments. The skill includes detailed templates for each method, allowing users to customize parameters such as job names, resource allocation, environment variables, and container images. This flexibility makes it suitable for a wide range of applications, from single-node development to complex multi-node training setups.
The NeMo AutoModel Launcher is particularly beneficial for teams working in environments where resource management and job scheduling are critical. By providing clear YAML configurations and guidelines, it helps streamline the process of launching jobs, reducing the potential for errors and improving overall productivity. Whether you are running experiments on local machines or deploying to cloud infrastructures, this skill can enhance your workflow by automating the setup of launch parameters.
However, it is important to note that this skill is focused solely on launcher configurations. It does not support the implementation or registration of new model architectures or capabilities, which are tasks that fall outside its intended use. Therefore, users looking for a comprehensive solution for model management should consider this limitation when deciding to integrate the NeMo AutoModel Launcher into their workflow.
When to use it
Use this skill when you need to launch NeMo AutoModel jobs in interactive, Slurm, or SkyPilot environments, particularly for training and debugging machine learning models.
When not to use it
This skill is not suitable for implementing new model architectures or managing model files; it is strictly for configuring launch parameters.
What you can build with it
Single-node Development
Quickly launch NeMo AutoModel jobs on a single node for testing and debugging purposes using the interactive execution method.
HPC Cluster Training
Configure and submit batch jobs to an HPC cluster using Slurm, managing resources effectively for large-scale training.
Cloud Deployment
Set up cloud-agnostic job submissions with SkyPilot, allowing for flexible and cost-effective training across various cloud platforms.
How to install NeMo AutoModel Launcher
View source1. Install with the skills CLI
npx skills add nvidia/skills/nemo-automodel-launcher-config --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by nvidiaLauncher Configuration
NeMo AutoModel supports three launch methods: interactive (torchrun), Slurm (HPC clusters), and SkyPilot (cloud-agnostic).
Instructions
For launcher questions, answer directly from this skill without inspecting the repository unless the user asks you to edit files. Keep the answer focused on the relevant launch YAML, required fields, and the expected runtime behavior.
Use these compact answer patterns for common questions:
- Slurm multi-node: show a
slurm:YAML block withjob_name,nodes,ntasks_per_node,time,accountorpartition,container_image,hf_home, optionalextra_mounts,env_vars, andmaster_port; explain that the launcher derivesWORLD_SIZE = nodes * ntasks_per_nodeand setsMASTER_ADDRandMASTER_PORT. - SkyPilot spot: show a
skypilot:YAML block withcloud,accelerators,num_nodes,use_spot: true,disk_size,region,setup, andenv_vars; warn that spot instances can be preempted, set a shortstep_scheduler.checkpoint_interval, and resume withrestore_from.path. - Nsight Systems on Slurm: show
slurm.nsys_enabled: truealongside normal Slurm fields, say the launcher wraps the training command withnsys profile, and state that it produces a.nsys-repreport file. Treat profiling as diagnostic-only: use short profiling runs and disable it for normal production training because it adds overhead and large artifacts.
For Slurm answers, start with this minimal template and then adjust only the fields the user asked about:
slurm:
job_name: llm_finetune
nodes: 2
ntasks_per_node: 8
time: "04:00:00"
account: my_account
partition: batch
container_image: nvcr.io/nvidia/nemo:dev
hf_home: ~/.cache/huggingface
master_port: 13742
env_vars:
HF_TOKEN: "${HF_TOKEN}"
For Slurm-only questions, do not discuss SkyPilot or profiling unless the user
asks. For profiling questions, say the .nsys-rep report is written in the
Slurm job working or output directory, using the launcher's Nsys output setting
when one is configured.
Routing Boundary
Use this skill only for launch mechanics: interactive execution, Slurm, SkyPilot, containers, mounts, environment variables, rendezvous settings, and profiling.
Do not use this skill for implementing or registering new model architectures, Hugging Face state-dict adapters, model files, or capability flags. Those are model onboarding tasks, not launcher configuration tasks.
Launch Methods
- Interactive (default): runs torchrun on the current node. Suitable for single-node development and debugging.
- Slurm: submits a batch job to an HPC cluster scheduler. Handles multi-node setup, container management, and environment configuration.
- SkyPilot: cloud-agnostic job submission to AWS, GCP, Azure, Lambda, or Kubernetes. Supports spot instances.
Interactive Launch
# Single GPU
automodel finetune llm -c config.yaml
# Multi-GPU (all GPUs on current node)
torchrun --nproc_per_node=8 -m nemo_automodel._cli.app finetune llm -c config.yaml
No additional YAML section is needed for interactive mode. The CLI routes to torchrun automatically when no slurm: or skypilot: section is present in the config.
Slurm Configuration
The SlurmConfig dataclass generates an SBATCH script from a template.
YAML Example
slurm:
job_name: llm_finetune
nodes: 2
ntasks_per_node: 8
time: "04:00:00"
account: my_account
partition: batch
container_image: nvcr.io/nvidia/nemo:dev
hf_home: ~/.cache/huggingface
extra_mounts:
- source: /data
dest: /data
env_vars:
WANDB_API_KEY: "${WANDB_API_KEY}"
HF_TOKEN: "${HF_TOKEN}"
Key Fields
job_name: Slurm job identifiernodes: number of nodes to requestntasks_per_node: number of tasks (GPUs) per nodetime: wall-time limit in HH:MM:SS formataccount,partition: Slurm scheduling parameterscontainer_image: Enroot/Pyxis container image pathnemo_mount: mount point for NeMo AutoModel source inside the containerhf_home: HuggingFace cache directory pathextra_mounts: list ofVolumeMapping(source, dest)for additional container bind mountsmaster_port: port for distributed communication (default 13742)env_vars: environment variables passed into the jobnsys_enabled: when true, wraps the training command withnsys profilefor Nsight Systems profiling
SkyPilot Configuration
The SkyPilotConfig dataclass defines cloud job parameters.
YAML Example
skypilot:
cloud: aws
accelerators: "H100:8"
num_nodes: 2
use_spot: true
disk_size: 200
region: us-east-1
setup: "pip install nemo-automodel"
env_vars:
HF_TOKEN: "${HF_TOKEN}"
Key Fields
cloud: target cloud provider (aws,gcp,azure,lambda,kubernetes)accelerators: GPU type and count (e.g.,"H100:8","A100-80GB:4")num_nodes: number of cloud instancesuse_spot: use preemptible/spot instances for cost savingsdisk_size: disk size in GB per noderegion: cloud region for instance placementsetup: shell commands to run before the training job (e.g., install dependencies)env_vars: environment variables for the job
SkyPilot spot checklist
When using spot or preemptible instances:
- Set
use_spot: truein theskypilot:section. - Include
accelerators,num_nodes,disk_size,region,setup, and requiredenv_vars. - Use short checkpoint intervals in the recipe, for example
step_scheduler.checkpoint_interval, because spot instances can be preempted. - Resume from the most recent checkpoint after preemption with the recipe's
restore_fromsetting.
Minimal spot-resume recipe keys:
step_scheduler:
checkpoint_interval: 100
restore_from:
path: /checkpoints/latest
Multi-Node Environment
For multi-node training (both Slurm and SkyPilot), the launcher automatically configures:
MASTER_ADDR: hostname of the first nodeMASTER_PORT: port for rendezvous (default 13742)WORLD_SIZE: total number of processes (nodes * ntasks_per_node)- NCCL environment variables for optimized collective communication
Nsys Profiling
Enable Nsight Systems profiling in Slurm jobs:
slurm:
job_name: llm_profile
nodes: 1
ntasks_per_node: 8
time: "00:30:00"
account: my_account
partition: batch
container_image: nvcr.io/nvidia/nemo:dev
nsys_enabled: true
This is a Slurm launcher setting. Normal Slurm fields such as job_name,
nodes, ntasks_per_node, time, account or partition, and
container_image still apply.
When nsys_enabled: true, the launcher wraps the training command with
nsys profile and writes a .nsys-rep report file for performance analysis
in the Slurm job working or output directory.
Profiling is diagnostic-only: run it for a short investigation, expect overhead
and large artifacts, and turn it off for normal production training.
Code Anchors
components/launcher/slurm/config.py- SlurmConfig dataclass, VolumeMappingcomponents/launcher/slurm/template.py- SBATCH script template generationcomponents/launcher/slurm/utils.py- Slurm submission utilitiescomponents/launcher/skypilot/config.py- SkyPilotConfig dataclass_cli/app.py- CLI entry point and launcher routing logic
Pitfalls
- Port collisions: if the default
master_port(13742) is in use by another job on the same node, change it to avoid connection failures. - Container mounts: the
sourcepath inextra_mountsmust exist on all nodes in the allocation. Missing paths cause container startup failures. - Slurm fault tolerance: the fault tolerance plugin is Slurm-specific and does not work with SkyPilot or interactive mode.
- SkyPilot spot preemption: spot instances (
use_spot: true) may be preempted by the cloud provider. Enable checkpointing with short intervals to minimize lost work. - Environment variable syntax: use
${VAR}syntax in YAML for shell variable expansion. Bare variable names will not be expanded. - Time limit vs async checkpoint: if the Slurm
timelimit is too short, an in-progress async checkpoint write may be killed before completion, resulting in a corrupted checkpoint. Leave at least 5-10 minutes of margin.
Frequently asked questions about NeMo AutoModel Launcher
Similar skills
Turborepo
Optimized build system for JavaScript/TypeScript monorepos.
Azure Pipelines Validation
Streamline your Azure DevOps pipeline changes locally.
Azure Developer CLI
Streamline your Azure project workflows with best practices.
Azure Container Registry CLI
Manage Azure Container Registry resources with ease.
Aspire
Build and orchestrate polyglot distributed applications seamlessly.
Vercel CLI
Manage and deploy Vercel projects from the command line.
