From 69be7f0d2bb400821b22ac8887ec8838fe372a93 Mon Sep 17 00:00:00 2001 From: nihuini Date: Thu, 4 Jan 2024 17:49:15 +0800 Subject: [PATCH] fix --- src/layer/loongarch/convolution1d_loongarch.cpp | 2 -- src/layer/mips/convolution1d_mips.cpp | 2 -- src/layer/riscv/convolution1d_riscv.cpp | 2 -- 3 files changed, 6 deletions(-) diff --git a/src/layer/loongarch/convolution1d_loongarch.cpp b/src/layer/loongarch/convolution1d_loongarch.cpp index 1f804861e7a..0917a79f62e 100644 --- a/src/layer/loongarch/convolution1d_loongarch.cpp +++ b/src/layer/loongarch/convolution1d_loongarch.cpp @@ -78,8 +78,6 @@ int Convolution1D_loongarch::create_pipeline(const Option& opt) } } - weight_data.release(); - return 0; } diff --git a/src/layer/mips/convolution1d_mips.cpp b/src/layer/mips/convolution1d_mips.cpp index 5db88c1935f..e9cf211e49b 100644 --- a/src/layer/mips/convolution1d_mips.cpp +++ b/src/layer/mips/convolution1d_mips.cpp @@ -78,8 +78,6 @@ int Convolution1D_mips::create_pipeline(const Option& opt) } } - weight_data.release(); - return 0; } diff --git a/src/layer/riscv/convolution1d_riscv.cpp b/src/layer/riscv/convolution1d_riscv.cpp index fbf4190ca94..6c581a0edeb 100644 --- a/src/layer/riscv/convolution1d_riscv.cpp +++ b/src/layer/riscv/convolution1d_riscv.cpp @@ -95,8 +95,6 @@ int Convolution1D_riscv::create_pipeline(const Option& opt) } } - weight_data.release(); - return 0; }