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
examples/common.h \
68
69
examples/common.cpp \
@@ -112,6 +113,7 @@ if [ -f $SRC_WHISPER/ggml-src.patch ]; then
112
113
# src/ggml-quants.c -> ggml/src/ggml-quants.c
113
114
# src/ggml-quants.h -> ggml/src/ggml-quants.h
114
115
# src/ggml-rpc.cpp -> ggml/src/ggml-rpc.cpp
116
+ # src/ggml-sycl/* -> ggml/src/ggml-sycl/*
115
117
# src/ggml-sycl.cpp -> ggml/src/ggml-sycl.cpp
116
118
# src/ggml-vulkan.cpp -> ggml/src/ggml-vulkan.cpp
117
119
#
@@ -151,6 +153,7 @@ if [ -f $SRC_WHISPER/ggml-src.patch ]; then
151
153
-e ' s/([[:space:]]|[ab]\/)src\/ggml-quants\.c/\1ggml\/src\/ggml-quants.c/g' \
152
154
-e ' s/([[:space:]]|[ab]\/)src\/ggml-quants\.h/\1ggml\/src\/ggml-quants.h/g' \
153
155
-e ' s/([[:space:]]|[ab]\/)src\/ggml-rpc\.cpp/\1ggml\/src\/ggml-rpc.cpp/g' \
156
+ -e ' s/([[:space:]]|[ab]\/)src\/ggml-sycl\//\1ggml\/src\/ggml-sycl\//g' \
154
157
-e ' s/([[:space:]]|[ab]\/)src\/ggml-sycl\.cpp/\1ggml\/src\/ggml-sycl.cpp/g' \
155
158
-e ' s/([[:space:]]|[ab]\/)src\/ggml-vulkan\.cpp/\1ggml\/src\/ggml-vulkan.cpp/g' \
156
159
-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