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 @@ -686,10 +686,6 @@ static void ggml_init_arm_arch_features(void) {
686
686
687
687
#endif // __ARM_ARCH
688
688
689
- void ggml_compute_forward_mul_mat (
690
- const struct ggml_compute_params * params ,
691
- struct ggml_tensor * dst );
692
-
693
689
struct ggml_tensor * ggml_new_i32 (struct ggml_context * ctx , int32_t value ) {
694
690
GGML_ASSERT (!ggml_get_no_alloc (ctx ));
695
691
Original file line number Diff line number Diff line change 21
21
static const size_t CACHE_LINE_SIZE_F32 = CACHE_LINE_SIZE/sizeof (float );
22
22
23
23
// 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 )
25
25
26
26
#ifdef __cplusplus
27
27
extern " C" {
Original file line number Diff line number Diff line change @@ -944,6 +944,7 @@ static const char * GGML_OP_NAME[GGML_OP_COUNT] = {
944
944
"CONV_TRANSPOSE_1D" ,
945
945
"IM2COL" ,
946
946
"IM2COL_BACK" ,
947
+ "CONV_2D" ,
947
948
"CONV_2D_DW" ,
948
949
"CONV_TRANSPOSE_2D" ,
949
950
"POOL_1D" ,
You can’t perform that action at this time.
0 commit comments