File tree 1 file changed +3
-7
lines changed
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -93,22 +93,18 @@ jobs:
93
93
- uses : uraimo/run-on-arch-action@v2
94
94
name : Run Docker on ARM64
95
95
with :
96
- arch : aarch64
96
+ arch : armv7
97
97
distro : ubuntu22.04
98
- install : |
99
- # apt-get update
100
- # apt-get install -y docker.io
98
+ install : |
101
99
uname -a
102
- # docker pull ascendai/cann:latest
103
100
base_image : --platform=linux/arm64 ascendai/cann:latest
104
101
run : |
105
102
uname -a
106
103
apt-get update
107
104
apt-get install git cmake build-essential make -y
108
105
git clone https://github.com/ggerganov/llama.cpp.git
109
-
106
+
110
107
cd llama.cpp
111
- bash ~/.bashrc
112
108
export LD_LIBRARY_PATH=/usr/local/Ascend/ascend-toolkit/latest/lib64:/usr/local/Ascend/ascend-toolkit/latest/aarch64-linux/devlib/:${LD_LIBRARY_PATH}
113
109
cmake -B build -DCMAKE_BUILD_TYPE=release -DGGML_CANN=on -DSOC_TYPE=ascend910b3 && cmake --build build -j $(nproc)
114
110
You can’t perform that action at this time.
0 commit comments