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 \