mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-05-05 18:18:12 +00:00
15 lines
198 B
C
15 lines
198 B
C
#pragma once
|
|
|
|
#include "ggml.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
GGML_API void ggml_critical_section_start(void);
|
|
GGML_API void ggml_critical_section_end(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|