Skip to content

Commit 8a10594

Browse files
committed
ggml-zdnn: rm static from funcs
Signed-off-by: Aaron Teo <[email protected]>
1 parent 06b41e6 commit 8a10594

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ggml/src/ggml-zdnn/mmf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "ggml.h"
22
#include "mmf.hpp"
33

4-
static void ggml_zdnn_mul_mat_f(ggml_backend_zdnn_context * ctx, const ggml_tensor * src0, const ggml_tensor * src1, ggml_tensor * dst) {
4+
void ggml_zdnn_mul_mat_f(ggml_backend_zdnn_context * ctx, const ggml_tensor * src0, const ggml_tensor * src1, ggml_tensor * dst) {
55
GGML_TENSOR_BINARY_OP_LOCALS;
66

77
const enum ggml_type type = src0->type;

ggml/src/ggml-zdnn/mmf.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
#include "common.hpp"
55

6-
static void ggml_zdnn_mul_mat_f(ggml_backend_zdnn_context * ctx, const ggml_tensor * src0, const ggml_tensor * src1, ggml_tensor * dst);
6+
void ggml_zdnn_mul_mat_f(ggml_backend_zdnn_context * ctx, const ggml_tensor * src0, const ggml_tensor * src1, ggml_tensor * dst);
77

88
#endif // GGML_ZDNN_MMF_HPP

0 commit comments

Comments
 (0)