Skip to content

Commit 29b85f1

Browse files
committed
Fix tests
1 parent 2589c1c commit 29b85f1

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
@@ -686,10 +686,6 @@ static void ggml_init_arm_arch_features(void) {
686686

687687
#endif // __ARM_ARCH
688688

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

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
@@ -944,6 +944,7 @@ static const char * GGML_OP_NAME[GGML_OP_COUNT] = {
944944
"CONV_TRANSPOSE_1D",
945945
"IM2COL",
946946
"IM2COL_BACK",
947+
"CONV_2D",
947948
"CONV_2D_DW",
948949
"CONV_TRANSPOSE_2D",
949950
"POOL_1D",

0 commit comments

Comments
 (0)