| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "common.h" |
| 4 | |
| 5 | #ifdef __cplusplus |
| 6 | extern "C"{ |
| 7 | #endif |
| 8 | |
| 9 | void ggml_compute_forward_add_non_quantized(const struct ggml_compute_params * params, struct ggml_tensor * dst); |
| 10 | void ggml_compute_forward_sub(const struct ggml_compute_params * params, struct ggml_tensor * dst); |
| 11 | void ggml_compute_forward_mul(const struct ggml_compute_params * params, struct ggml_tensor * dst); |
| 12 | void ggml_compute_forward_div(const struct ggml_compute_params * params, struct ggml_tensor * dst); |
| 13 | |
| 14 | #ifdef __cplusplus |
| 15 | } |
| 16 | #endif |
| 17 |