We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b7baa0 commit 750631dCopy full SHA for 750631d
Dockerfile.arm64
@@ -1,13 +1,20 @@
1
FROM python:3.12-slim AS triton-builder
2
3
RUN apt-get update -qq && \
4
- apt-get install -qq -y git && \
+ apt-get install -qq -y \
5
+ build-essential \
6
+ clang \
7
+ cmake \
8
+ git \
9
+ lld \
10
+ llvm && \
11
rm -rf /var/lib/apt/lists/*
12
13
RUN git clone https://github.com/triton-lang/triton.git /tmp/triton \
14
--depth 1 \
15
--branch v3.2.0
16
17
+ARG TRITON_BUILD_WITH_CLANG_LLD=true
18
RUN --mount=type=cache,target=/root/.cache/pip \
19
cd /tmp/triton && \
20
pip install ninja cmake wheel pybind11 && \
0 commit comments