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) {
687
687
688
688
#endif // __ARM_ARCH
689
689
690
- void ggml_compute_forward_mul_mat (
691
- const struct ggml_compute_params * params ,
692
- struct ggml_tensor * dst );
693
-
694
690
struct ggml_tensor * ggml_new_i32 (struct ggml_context * ctx , int32_t value ) {
695
691
GGML_ASSERT (!ggml_get_no_alloc (ctx ));
696
692
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 @@ -945,6 +945,7 @@ static const char * GGML_OP_NAME[GGML_OP_COUNT] = {
945
945
"CONV_TRANSPOSE_1D" ,
946
946
"IM2COL" ,
947
947
"IM2COL_BACK" ,
948
+ "CONV_2D" ,
948
949
"CONV_2D_DW" ,
949
950
"CONV_TRANSPOSE_2D" ,
950
951
"POOL_1D" ,
You can’t perform that action at this time.
0 commit comments