* ggml : build backends as libraries --------- Signed-off-by: Xiaodong Ye <xiaodong.ye@mthreads.com> Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> Co-authored-by: R0CKSTAR <xiaodong.ye@mthreads.com>
12 lines
161 B
C
12 lines
161 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ggml_critical_section_start(void);
|
|
void ggml_critical_section_end(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|