1#pragma once
 2
 3#include "ggml.h"
 4#include "ggml-backend.h"
 5
 6#ifdef  __cplusplus
 7extern "C" {
 8#endif
 9
10#define GGML_WEBGPU_NAME "WebGPU"
11
12// Needed for examples in ggml
13GGML_BACKEND_API ggml_backend_t ggml_backend_webgpu_init(void);
14
15GGML_BACKEND_API ggml_backend_reg_t ggml_backend_webgpu_reg(void);
16
17#ifdef  __cplusplus
18}
19#endif