Skip to content

Commit 96ded47

Browse files
committed
Fix tests
1 parent ec7fcfc commit 96ded47

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

ggml/src/ggml-cpu/ggml-cpu.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -687,10 +687,6 @@ static void ggml_init_arm_arch_features(void) {
687687

688688
#endif // __ARM_ARCH
689689

690-
void ggml_compute_forward_mul_mat(
691-
const struct ggml_compute_params * params,
692-
struct ggml_tensor * dst);
693-
694690
struct ggml_tensor * ggml_new_i32(struct ggml_context * ctx, int32_t value) {
695691
GGML_ASSERT(!ggml_get_no_alloc(ctx));
696692

ggml/src/ggml-cpu/ops.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
static const size_t CACHE_LINE_SIZE_F32 = CACHE_LINE_SIZE/sizeof(float);
2222

2323
// Work buffer size for im2col operations in CONV2D
24-
#define GGML_IM2COL_WORK_SIZE (16 * 1024 * 1024) // 16MB work buffer
24+
#define GGML_IM2COL_WORK_SIZE (16 * 1024 * 1024)
2525

2626
#ifdef __cplusplus
2727
extern "C" {

ggml/src/ggml.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -945,6 +945,7 @@ static const char * GGML_OP_NAME[GGML_OP_COUNT] = {
945945
"CONV_TRANSPOSE_1D",
946946
"IM2COL",
947947
"IM2COL_BACK",
948+
"CONV_2D",
948949
"CONV_2D_DW",
949950
"CONV_TRANSPOSE_2D",
950951
"POOL_1D",

0 commit comments

Comments
 (0)