File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff 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-
694690struct ggml_tensor * ggml_new_i32 (struct ggml_context * ctx , int32_t value ) {
695691 GGML_ASSERT (!ggml_get_no_alloc (ctx ));
696692
Original file line number Diff line number Diff line change 2121static 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
2727extern " C" {
Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments