File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ while read c; do
63
63
src/ggml* .metal \
64
64
src/ggml* .cu \
65
65
src/ggml-cuda/* \
66
+ src/ggml-sycl/* \
66
67
include/ggml* .h \
67
68
tests/test-opt.cpp \
68
69
tests/test-grad0.cpp \
@@ -113,6 +114,7 @@ if [ -f $SRC_LLAMA/ggml-src.patch ]; then
113
114
# src/ggml-quants.c -> ggml/src/ggml-quants.c
114
115
# src/ggml-quants.h -> ggml/src/ggml-quants.h
115
116
# src/ggml-rpc.cpp -> ggml/src/ggml-rpc.cpp
117
+ # src/ggml-sycl/* -> ggml/src/ggml-sycl/
116
118
# src/ggml-sycl.cpp -> ggml/src/ggml-sycl.cpp
117
119
# src/ggml-vulkan.cpp -> ggml/src/ggml-vulkan.cpp
118
120
#
@@ -153,6 +155,7 @@ if [ -f $SRC_LLAMA/ggml-src.patch ]; then
153
155
-e ' s/([[:space:]]|[ab]\/)src\/ggml-quants\.c/\1ggml\/src\/ggml-quants.c/g' \
154
156
-e ' s/([[:space:]]|[ab]\/)src\/ggml-quants\.h/\1ggml\/src\/ggml-quants.h/g' \
155
157
-e ' s/([[:space:]]|[ab]\/)src\/ggml-rpc\.cpp/\1ggml\/src\/ggml-rpc.cpp/g' \
158
+ -e ' s/([[:space:]]|[ab]\/)src\/ggml-sycl\//\1ggml\/src\/ggml-sycl\//g' \
156
159
-e ' s/([[:space:]]|[ab]\/)src\/ggml-sycl\.cpp/\1ggml\/src\/ggml-sycl.cpp/g' \
157
160
-e ' s/([[:space:]]|[ab]\/)src\/ggml-vulkan\.cpp/\1ggml\/src\/ggml-vulkan.cpp/g' \
158
161
-e ' s/([[:space:]]|[ab]\/)include\/ggml\.h/\1ggml\/include\/ggml.h/g' \
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ cp -rpv ../ggml/src/ggml-metal.metal ./ggml/src/ggml-metal.metal
18
18
cp -rpv ../ggml/src/ggml-quants.c ./ggml/src/ggml-quants.c
19
19
cp -rpv ../ggml/src/ggml-quants.h ./ggml/src/ggml-quants.h
20
20
cp -rpv ../ggml/src/ggml-rpc.cpp ./ggml/src/ggml-rpc.cpp
21
+ cp -rpv ../ggml/src/ggml-sycl/* ./ggml/src/ggml-sycl/
21
22
cp -rpv ../ggml/src/ggml-sycl.cpp ./ggml/src/ggml-sycl.cpp
22
23
cp -rpv ../ggml/src/ggml-vulkan.cpp ./ggml/src/ggml-vulkan.cpp
23
24
You can’t perform that action at this time.
0 commit comments