mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-11-01 09:01:57 +00:00
20 lines
251 B
C
20 lines
251 B
C
#pragma once
|
|
|
|
#include "ggml.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void * ggml_cuda_host_malloc(size_t size);
|
|
void ggml_cuda_host_free(void * ptr);
|
|
|
|
// backend API
|
|
|
|
struct ggml_backend ggml_backend_cuda_init();
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|