File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed
whisper.android.java/app/src/main/jni/whisper
whisper.android/lib/src/main/jni/whisper Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ ggml/src/ggml-cpu/ggml-cpu-cpp.o: \
2
2
ggml/src/ggml-cpu/ggml-cpu.cpp \
3
3
ggml/src/ggml-cpu/unary-ops.cpp \
4
4
ggml/src/ggml-cpu/binary-ops.cpp \
5
+ ggml/src/ggml-cpu/vec.cpp \
6
+ ggml/src/ggml-cpu/ops.cpp \
5
7
ggml/include/ggml-backend.h \
6
8
ggml/include/ggml.h \
7
9
ggml/include/ggml-alloc.h \
Original file line number Diff line number Diff line change 170
170
'ggml/src/ggml-cpu/ggml-cpu-quants.o' <<
171
171
'ggml/src/ggml-cpu/ggml-cpu-traits.o' <<
172
172
'ggml/src/ggml-cpu/unary-ops.o' <<
173
- 'ggml/src/ggml-cpu/binary-ops.o'
173
+ 'ggml/src/ggml-cpu/binary-ops.o' <<
174
+ 'ggml/src/ggml-cpu/vec.o' <<
175
+ 'ggml/src/ggml-cpu/ops.o'
174
176
175
177
$OBJ_WHISPER <<
176
178
'src/whisper.o' <<
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ set(SOURCE_FILES
14
14
${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/ggml-cpu.cpp
15
15
${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/unary-ops.cpp
16
16
${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/binary-ops.cpp
17
+ ${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/vec.cpp
18
+ ${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/ops.cpp
17
19
${WHISPER_LIB_DIR} /ggml/src/ggml-alloc.c
18
20
${WHISPER_LIB_DIR} /ggml/src/ggml-backend.cpp
19
21
${WHISPER_LIB_DIR} /ggml/src/ggml-backend-reg.cpp
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ if (NOT GGML_HOME)
34
34
${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/ggml-cpu-traits.cpp
35
35
${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/unary-ops.cpp
36
36
${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/binary-ops.cpp
37
+ ${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/vec.cpp
38
+ ${WHISPER_LIB_DIR} /ggml/src/ggml-cpu/ops.cpp
37
39
)
38
40
endif ()
39
41
You can’t perform that action at this time.
0 commit comments