mirror of
https://github.com/RYDE-WORK/llama.cpp.git
synced 2026-01-23 08:09:22 +08: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
|