Initial release

This commit is contained in:
civ
2026-08-16 18:33:03 +07:00
commit 7ade4e1152
1966 changed files with 412966 additions and 0 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
rm -rf build-shared
mkdir build-shared
cd build-shared
cmake .. -DGGML_HIP=ON -DGPU_TARGETS=gfx1100 -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release -j "$(nproc)"
cd ../server
CGO_ENABLED=0 go build -o trellis2-server-linux .
cd ..