From 78596d1527c0822aa8276839c55be9655682c649 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Oct 2025 17:02:46 +0000 Subject: [PATCH 1/2] Initial plan From cd84ace3ec3192cac88f1b3839f82620278e9072 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Oct 2025 17:06:14 +0000 Subject: [PATCH 2/2] Fix triton build by adding --system flag to uv pip commands Co-authored-by: adamjuhasz <757940+adamjuhasz@users.noreply.github.com> --- Dockerfiles/l4t-jetpack-triton.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfiles/l4t-jetpack-triton.Dockerfile b/Dockerfiles/l4t-jetpack-triton.Dockerfile index 119d3f2..e7b6b20 100644 --- a/Dockerfiles/l4t-jetpack-triton.Dockerfile +++ b/Dockerfiles/l4t-jetpack-triton.Dockerfile @@ -54,9 +54,9 @@ RUN mkdir -p third_party/cuda && \ RUN uv build --wheel --out-dir /wheels # Test the installation -RUN uv pip install /wheels/triton*.whl && \ +RUN uv pip install --system /wheels/triton*.whl && \ python3 -c 'import triton' && \ - uv pip show triton + uv pip show --system triton # --- Artifact output --- FROM scratch AS artifact