From f58b4fa820459c830e834d76437ab2ef9e7388f2 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Tue, 12 May 2026 22:21:01 -0700 Subject: [PATCH] Minor updates --- .gitignore | 1 - rocm-base-aarch64-dockerfile | 7 ++++++- 2 files changed, 6 insertions(+), 2 deletions(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index ba5841d..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -TheRock diff --git a/rocm-base-aarch64-dockerfile b/rocm-base-aarch64-dockerfile index 921d059..193aef8 100644 --- a/rocm-base-aarch64-dockerfile +++ b/rocm-base-aarch64-dockerfile @@ -4,7 +4,11 @@ FROM ubuntu:26.04 AS reqs ENV PIP_BREAK_SYSTEM_PACKAGES=1 ENV PYTHONUNBUFFERED=1 ENV DEBIAN_FRONTEND=noninteractive -ENV MAX_JOBS=10 + +# My sad server with 96 Gbytes of ram keeps running out of ram ;( +# I would love to use the whole 80 core CPU ;( +ENV MAX_JOBS=5 + # Install libraries RUN apt update -y && \ apt upgrade -y && \ @@ -26,6 +30,7 @@ RUN apt update -y && \ flex \ cmake \ build-essential \ + libsimde-dev \ zlib1g-dev \ libncurses5-dev \ libopenblas-dev \