whisper : migrate to ggml-backend

This commit is contained in:
Georgi Gerganov 2023-11-10 10:54:06 +02:00
parent d03c60dd7f
commit 659757329d
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735
2 changed files with 415 additions and 429 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,8 @@
#ifndef WHISPER_H #ifndef WHISPER_H
#define WHISPER_H #define WHISPER_H
#include "ggml.h"
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
@ -570,8 +572,7 @@ extern "C" {
// Control logging output; default behavior is to print to stderr // Control logging output; default behavior is to print to stderr
typedef void (*whisper_log_callback)(const char * line); WHISPER_API void whisper_log_set(ggml_log_callback log_callback, void * user_data);
WHISPER_API void whisper_set_log_callback(whisper_log_callback callback);
#ifdef __cplusplus #ifdef __cplusplus
} }