From a34640c71fba0a6e8c5d7ec5f2740a1656656c32 Mon Sep 17 00:00:00 2001 From: Niko Date: Tue, 5 Nov 2024 22:45:41 -0700 Subject: [PATCH] Add missing ggml files --- sys/Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sys/Cargo.toml b/sys/Cargo.toml index f93ba2f..934b305 100644 --- a/sys/Cargo.toml +++ b/sys/Cargo.toml @@ -16,10 +16,18 @@ include = [ "whisper.cpp/src/CMakeLists.txt", "whisper.cpp/src/whisper.cpp", "whisper.cpp/include/whisper.h", + "whisper.cpp/ggml/CMakeLists.txt", + "whisper.cpp/ggml/src/CMakeLists.txt", "whisper.cpp/ggml/src/ggml.c", + "whisper.cpp/ggml/src/ggml-aarch64.c", + "whisper.cpp/ggml/src/ggml-aarch64.h", "whisper.cpp/ggml/src/ggml-alloc.c", + "whisper.cpp/ggml/src/ggml-backend-impl.h", "whisper.cpp/ggml/src/ggml-backend.c", + "whisper.cpp/ggml/src/ggml-backend.cpp", "whisper.cpp/ggml/src/ggml-cuda.cu", + "whisper.cpp/ggml/src/ggml-common.h", + "whisper.cpp/ggml/src/ggml-cpu-impl.h", "whisper.cpp/ggml/src/ggml-impl.h", "whisper.cpp/ggml/src/ggml-metal.m", "whisper.cpp/ggml/src/ggml-metal.metal", @@ -29,6 +37,8 @@ include = [ "whisper.cpp/ggml/include/ggml-alloc.h", "whisper.cpp/ggml/include/ggml-backend.h", "whisper.cpp/ggml/include/ggml-backend-impl.h", + "whisper.cpp/ggml/include/ggml-blas.h", + "whisper.cpp/ggml/include/ggml-cann.h", "whisper.cpp/ggml/include/ggml-cuda.h", "whisper.cpp/ggml/include/ggml-metal.h", "whisper.cpp/LICENSE",