Compare commits

..

2 Commits

Author SHA1 Message Date
derek 363b7cd212 add gitignore
Docker Build and Release Upload / build-rocm (push) Failing after 36s
2026-05-12 19:56:55 -07:00
derek 3d8d3fe84d fix stage naming 2026-05-12 19:56:21 -07:00
3 changed files with 5 additions and 3 deletions
+1
View File
@@ -0,0 +1 @@
TheRock
Submodule
+1
Submodule TheRock added at b296f29cdd
+3 -3
View File
@@ -67,7 +67,7 @@ RUN wget https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz && \
# Tested Working # Tested Working
# Build ROCm latest # Build ROCm latest
FROM python AS ROCm FROM python AS rocm
WORKDIR /build/therock WORKDIR /build/therock
COPY ./TheRock . COPY ./TheRock .
ENV CFLAGS="-Wno-error=discarded-qualifiers -fcommon -w" ENV CFLAGS="-Wno-error=discarded-qualifiers -fcommon -w"
@@ -92,7 +92,7 @@ RUN env INSTALL_PREFIX=/usr/local ./dockerfiles/install_pinned_patchelf.sh && \
# Work in progress [ Breaking due to x86 intrinsics not ported to Aarch64 ] # Work in progress [ Breaking due to x86 intrinsics not ported to Aarch64 ]
# Build pytorch # Build pytorch
FROM ROCm AS pytorch FROM rocm AS pytorch
# Setup Envronment # Setup Envronment
ENV PYTORCH_ROCM_ARCH=1100 ENV PYTORCH_ROCM_ARCH=1100
ENV USE_ROCM=1 ENV USE_ROCM=1
@@ -149,5 +149,5 @@ WORKDIR /build/torchaudio
RUN git clone https://github.com/pytorch/vision.git RUN git clone https://github.com/pytorch/vision.git
# Build final stripped down image # Build final stripped down image
FROM ubuntu:26.04 as rocm-aarch64 FROM ubuntu:26.04
# Copy in rocm, pytorch, torchaudio, torchvision # Copy in rocm, pytorch, torchaudio, torchvision