Compile TensorRT-LLM on SLURM Cluster
Submit, monitor, and verify a TensorRT-LLM compilation job on a SLURM cluster using enroot containers.
When to Use
| Scenario | Use This Skill? |
|---|
| User wants to compile TRT-LLM on a SLURM cluster | Yes |
| User is already on a compute node and wants to compile | No — use skill instead |
Finding the Docker Image
The official Docker image tag for a given TensorRT-LLM version is recorded in the repo itself:
<repo_dir>/jenkins/current_image_tags.properties
Read this file to find the current image URL (e.g.,
urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:pytorch-25.12-py3-aarch64-ubuntu24.04-trt10.14.1.48-skip-tritondevel-202602011118-10901
).
Pre-dumping the Container Image (enroot import)
SLURM clusters using enroot/pyxis require a
container image. To avoid download overhead at compile time,
pre-dump the image in advance using the
companion script:
bash
# Basic usage — submits a SLURM job on a CPU partition to import the image
enroot-import --partition cpu_datamover --debug <docker_image_url>
The script submits an
job that runs
enroot import docker://<image_url>
and produces a
file in the current directory. The output on stdout is the SLURM job ID.
enroot-import flags
| Flag | Description |
|---|
| SLURM partition for the import job (use a CPU partition like ) |
| Enable debug output and preserve the SLURM log (recommended) |
| Custom output path for the file |
| SLURM account (defaults to user's first account) |
| Time limit for the import job (default: 1 hour) |
| Print the sbatch command without executing |
| Custom job name |
enroot-import workflow
- Read the image tag from
jenkins/current_image_tags.properties
in the TRT-LLM repo.
- Run to submit the import job:
bash
cd <directory_where_sqsh_should_be_stored>
<path_to>/enroot-import --partition cpu_datamover --debug <image_url>
IMPORTANT: Convert urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:xxx
to urm.nvidia.com#sw-tensorrt-docker/tensorrt-llm:xxx
to avoid credential issues.
- Wait for the import job to complete ().
- The resulting file is the used in the compile step.
Prerequisites
The user must provide (or you must ask for) these values:
| Parameter | Description | Example |
|---|
| Path to container image (see enroot import above) | |
| Path to the TensorRT-LLM repository | |
| Top-level directory to bind-mount into the container | |
| SLURM partition | |
| SLURM account | |
Optional parameters:
| Parameter | Description | Default |
|---|
| SLURM job name | trtllm-compile.<username>
|
| Number of GPUs to request | |
| Job time limit | |
| GPU architecture(s) for flag | |
| Extra flags for | (none) |
Companion Scripts
This skill includes three companion scripts in
:
| Script | Purpose |
|---|
| Pre-dump a Docker image to via a SLURM batch job |
| Template for submitting the SLURM job — copy and customize |
| SLURM batch script — launches the container and calls |
| Runs inside the container — executes |
Scripts directory:
skills/exec-slurm-compile/scripts/
Instructions
Follow these steps in order:
Step 0: Resolve the Container Image (if needed)
If the user does not already have a
container image:
- Read the Docker image tag from
<repo_dir>/jenkins/current_image_tags.properties
.
- Use to pre-dump it:
bash
cd <directory_for_sqsh_files>
<scripts_dir>/enroot-import --partition cpu_datamover --debug <image_url>
- Monitor the import job with .
- Once complete, the file path becomes the parameter.
If the user already has a
file, skip this step.
Step 1: Gather Information
Ask the user for any missing prerequisite values listed above. At minimum you need:
- (or the Docker image URL — then run Step 0 first)
- and
If the user has used this workflow before, check if previous values are stored in memory files.
Step 2: Prepare the Scripts Directory
The compile scripts must be accessible from inside the container (i.e., under
). Either:
Option A — Copy companion scripts to a location under
:
bash
scripts_dir=<mount_dir>/<username>/workspace/tensorrt_llm_scripts
mkdir -p ${scripts_dir}/log
cp skills/exec-slurm-compile/scripts/compile.sh ${scripts_dir}/
cp skills/exec-slurm-compile/scripts/compile.slurm ${scripts_dir}/
chmod +x ${scripts_dir}/compile.sh ${scripts_dir}/compile.slurm
Option B — If the user already has scripts at a known location, use those directly.
Step 3: Submit the Job
Run
from the login node (or a node with SLURM client access):
bash
sbatch \
--nodes=1 --ntasks=1 --ntasks-per-node=1 \
--gres=gpu:<gpu_count> \
--partition=<partition> \
--account=<account> \
--job-name=<jobname> \
--time=<time_limit> \
<scripts_dir>/compile.slurm \
<container_image> <mount_dir> <scripts_dir> <repo_dir>
Capture and report the job ID from the
output.
Step 4: Monitor the Job (Proactive — Do NOT Wait for User)
You MUST actively poll the job until it completes. Do not submit and walk away.
bash
# Check job status (repeat every 30-60 seconds)
squeue -j <job_id> -o "%.18i %.9P %.30j %.8u %.2t %.10M %.6D %R"
# Once running, periodically tail the log (do NOT use tail -f, use tail -30 instead)
tail -30 <scripts_dir>/log/compile_<job_id>.srun.log
Monitoring loop:
- Poll to check state
- If (pending) — report the reason, keep polling every 30-60s
- If (running) — tail the build log every 30-60s; look for , errors, or completion
- If the job disappears from , it has finished — proceed to Step 5
- If (failed) — immediately read the full log and report the error
Progress indicators to look for in the log:
[XX%] Building CXX object...
— compilation progress
- — link phase
- , , — build failure
- — success
Step 5: Verify the Build
Once the job completes, check for success:
bash
# Check SLURM exit code
sacct -j <job_id> --format=JobID,State,ExitCode,Elapsed
# Check the build log for errors
tail -50 <scripts_dir>/log/compile_<job_id>.srun.log
A successful build ends with a message like
Successfully built tensorrt_llm
or completes without error.
Common Build Flags Reference
| Flag | Description |
|---|
--trt_root /usr/local/tensorrt
| TensorRT installation path (standard in NVIDIA containers) |
| Build the C++ benchmarks |
| Target architecture — for Blackwell, for Hopper, etc. |
| Enable NVTX markers for profiling |
| Skip virtual environment creation |
| Use ccache to speed up recompilation |
| Build in-place without creating a wheel file |
| Fast build — skip some kernels for faster dev compilation |
| Clean build — wipe build directory before building |
Common architecture values:
- — Blackwell (B200, GB200)
- — Hopper (H100, H200)
- — Ada Lovelace (L40S)
- — Ampere (A100)
- — Multiple architectures
Troubleshooting
| Issue | Solution |
|---|
sbatch: error: invalid partition
| Verify partition name with |
sbatch: error: invalid account
| Check available accounts with sacctmgr show assoc user=$USER
|
| Container image not found | Verify the path exists and is readable |
| Build fails with missing TensorRT | Ensure points to the correct path inside the container |
| Build OOM (out of memory) | Reduce parallelism with flag to |
srun: error: Unable to create step
| The node may lack enroot/pyxis — check with cluster admin |
| Job stuck in state | Check for the reason (e.g., resource limits, priority) |
| fails with auth error | Check ~/.config/enroot/.credentials
has the correct registry credentials |
| produces empty/corrupt | Re-run with and check the SLURM log; verify the image URL has no prefix |
| Weird compile issues | Retry with a clean build ( flag) |
| shown in | Not a blocker, just wait for the job to get scheduled |
Example Interaction
User: "Compile TRT-LLM on the OCI cluster"
Agent actions:
- Ask for container image path, repo path, mount dir (if not known)
- Confirm partition/account for OCI cluster
- Copy scripts to accessible location under mount_dir
- Submit with
- Report job ID
- Monitor with until complete
- Check logs and report success/failure