summaryrefslogtreecommitdiff
path: root/llama.cpp/ggml/src/ggml-cpu/binary-ops.h
diff options
context:
space:
mode:
Diffstat (limited to 'llama.cpp/ggml/src/ggml-cpu/binary-ops.h')
-rw-r--r--llama.cpp/ggml/src/ggml-cpu/binary-ops.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/llama.cpp/ggml/src/ggml-cpu/binary-ops.h b/llama.cpp/ggml/src/ggml-cpu/binary-ops.h
new file mode 100644
index 0000000..aca1d89
--- /dev/null
+++ b/llama.cpp/ggml/src/ggml-cpu/binary-ops.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include "common.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void ggml_compute_forward_add_non_quantized(const struct ggml_compute_params * params, struct ggml_tensor * dst);
+void ggml_compute_forward_sub(const struct ggml_compute_params * params, struct ggml_tensor * dst);
+void ggml_compute_forward_mul(const struct ggml_compute_params * params, struct ggml_tensor * dst);
+void ggml_compute_forward_div(const struct ggml_compute_params * params, struct ggml_tensor * dst);
+
+#ifdef __cplusplus
+}
+#endif