refactor: split ai/ into hermes/ and ollama/ directories with gfx906 build #19

Merged
gortium merged 21 commits from feat/ollama-gfx906 into master 2026-05-11 01:26:12 +00:00
5 changed files with 88 additions and 2 deletions
Showing only changes of commit f6bc2b07a7 - Show all commits

View File

@@ -52,10 +52,8 @@ RUN mkdir -p build && cd build && \
cmake --build . -- -l $(nproc) && \
cmake --install . --component HIP --strip --prefix /build/dist
# Build the Go binary
# Build the Go binary (use GCC for CGo linking)
ENV CGO_ENABLED=1
ENV CC=clang
ENV CXX=clang++
RUN go build -trimpath -o /build/dist/ollama .
# ---------- Runtime image ----------