// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of the License at // // https://opensource.org/licenses/BSD-3-Clause // // Unless required by applicable law or agreed to in writing, software distributed // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR // CONDITIONS OF ANY KIND, either express or implied. See the License for the // specific language governing permissions and limitations under the License. #include "convolutiondepthwise_arm.h" #include "layer_type.h" #if __ARM_NEON #include #include "neon_mathfun.h" #endif // __ARM_NEON #include "neon_activation.h" namespace ncnn { #include "convolutiondepthwise_3x3.h" #include "convolutiondepthwise_3x3_int8.h" #include "convolutiondepthwise_5x5.h" #if __ARM_NEON #include "convolutiondepthwise_3x3_pack4.h" #include "convolutiondepthwise_3x3_pack4_bf16s.h" #include "convolutiondepthwise_5x5_pack4.h" #include "convolutiondepthwise_5x5_pack4_bf16s.h" #endif // __ARM_NEON ConvolutionDepthWise_arm::ConvolutionDepthWise_arm() { #if __ARM_NEON support_packing = true; #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC support_fp16_storage = true; #endif #endif // __ARM_NEON support_bf16_storage = true; activation = 0; } int ConvolutionDepthWise_arm::create_pipeline(const Option& opt) { if (activation_type == 1) { activation = ncnn::create_layer(ncnn::LayerType::ReLU); ncnn::ParamDict pd; activation->load_param(pd); } else if (activation_type == 2) { activation = ncnn::create_layer(ncnn::LayerType::ReLU); ncnn::ParamDict pd; pd.set(0, activation_params[0]); // slope activation->load_param(pd); } else if (activation_type == 3) { activation = ncnn::create_layer(ncnn::LayerType::Clip); ncnn::ParamDict pd; pd.set(0, activation_params[0]); // min pd.set(1, activation_params[1]); // max activation->load_param(pd); } else if (activation_type == 4) { activation = ncnn::create_layer(ncnn::LayerType::Sigmoid); ncnn::ParamDict pd; activation->load_param(pd); } else if (activation_type == 5) { activation = ncnn::create_layer(ncnn::LayerType::Mish); ncnn::ParamDict pd; activation->load_param(pd); } if (activation) { activation->create_pipeline(opt); } if (opt.use_int8_inference && weight_data.elemsize == (size_t)1u) { support_packing = false; } // create Convolution op for each group const int maxk = kernel_w * kernel_h; int channels = (weight_data_size / group) / maxk / (num_output / group) * group; // depth-wise if (channels == group && group == num_output) { if (opt.use_int8_inference && weight_data.elemsize == (size_t)1u) { if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { return 0; } if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { return 0; } } int elempack = (support_packing && opt.use_packing_layout && channels % 4 == 0) ? 4 : 1; #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC if (opt.use_fp16_storage) { if (elempack == 4) { Mat weight_data_r2 = weight_data.reshape(maxk, group); convert_packing(weight_data_r2, weight_data_pack4, 4); ncnn::cast_float32_to_float16(weight_data_pack4, weight_data_pack4_fp16, opt); } if (elempack == 1) { ncnn::cast_float32_to_float16(weight_data, weight_data_fp16, opt); } ncnn::cast_float32_to_float16(bias_data, bias_data_fp16, opt); return 0; } #endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC if (opt.use_bf16_storage) { #if __ARM_NEON if (elempack == 4) { Mat weight_data_r2 = weight_data.reshape(maxk, group); convert_packing(weight_data_r2, weight_data_pack4, 4); ncnn::cast_float32_to_bfloat16(weight_data_pack4, weight_data_pack4_bf16, opt); } #endif // __ARM_NEON if (elempack == 1) { ncnn::cast_float32_to_bfloat16(weight_data, weight_data_bf16, opt); } return 0; } #if __ARM_NEON // pack4 if (elempack == 4) { Mat weight_data_r2 = weight_data.reshape(maxk, group); convert_packing(weight_data_r2, weight_data_pack4, 4); return 0; } #endif // __ARM_NEON if (elempack == 1) { if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { return 0; } if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { return 0; } if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { return 0; } if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { return 0; } } } // group convolution for (int i = 0; i < (int)group_ops.size(); i++) delete group_ops[i]; group_ops.clear(); const int channels_g = channels / group; const int num_output_g = num_output / group; group_ops.resize(group); for (int g = 0; g < group; g++) { Mat weight_data_g = weight_data.range(maxk * channels_g * num_output_g * g, maxk * channels_g * num_output_g); Mat bias_data_g; if (bias_term) bias_data_g = bias_data.range(num_output_g * g, num_output_g); ncnn::Layer* op = ncnn::create_layer(ncnn::LayerType::Convolution); // FIXME // ((ncnn::Convolution*)op)->use_int8_requantize = use_int8_requantize; // set param ncnn::ParamDict pd; pd.set(0, num_output_g); // num_output pd.set(1, kernel_w); pd.set(11, kernel_h); pd.set(2, dilation_w); pd.set(12, dilation_h); pd.set(3, stride_w); pd.set(13, stride_h); pd.set(4, 0); // pad_w pd.set(14, 0); // pad_h pd.set(5, bias_term); pd.set(6, maxk * channels_g * num_output_g); // weight_data_size pd.set(8, int8_scale_term); pd.set(9, activation_type); pd.set(10, activation_params); op->load_param(pd); // set weights if (bias_term) { ncnn::Mat weights[4]; weights[0] = weight_data_g; weights[1] = bias_data_g; if (int8_scale_term) { Mat weight_data_int8_scales_g(num_output_g); weight_data_int8_scales_g.fill(weight_data_int8_scales[g]); weights[2] = weight_data_int8_scales_g; weights[3] = bottom_blob_int8_scales.range(g, 1); } op->load_model(ModelBinFromMatArray(weights)); } else { ncnn::Mat weights[3]; weights[0] = weight_data_g; if (int8_scale_term) { Mat weight_data_int8_scales_g(num_output_g); weight_data_int8_scales_g.fill(weight_data_int8_scales[g]); weights[1] = weight_data_int8_scales_g; weights[2] = bottom_blob_int8_scales.range(g, 1); } op->load_model(ModelBinFromMatArray(weights)); } op->create_pipeline(opt); group_ops[g] = op; } return 0; } int ConvolutionDepthWise_arm::destroy_pipeline(const Option& opt) { if (activation) { activation->destroy_pipeline(opt); delete activation; activation = 0; } for (int i = 0; i < (int)group_ops.size(); i++) { group_ops[i]->destroy_pipeline(opt); delete group_ops[i]; } group_ops.clear(); return 0; } int ConvolutionDepthWise_arm::forward(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const { // convolv with NxN kernel // value = value + bias if (opt.use_int8_inference && weight_data.elemsize == (size_t)1u) { return forward_int8_arm(bottom_blob, top_blob, opt); } #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC if (opt.use_fp16_storage) { if (opt.use_fp16_arithmetic) return forward_fp16sa(bottom_blob, top_blob, opt); else return forward_fp16s(bottom_blob, top_blob, opt); } #endif if (opt.use_bf16_storage) return forward_bf16s(bottom_blob, top_blob, opt); int w = bottom_blob.w; int h = bottom_blob.h; int channels = bottom_blob.c; size_t elemsize = bottom_blob.elemsize; int elempack = bottom_blob.elempack; const int kernel_extent_w = dilation_w * (kernel_w - 1) + 1; const int kernel_extent_h = dilation_h * (kernel_h - 1) + 1; Mat bottom_blob_bordered; make_padding(bottom_blob, bottom_blob_bordered, opt); if (bottom_blob_bordered.empty()) return -100; w = bottom_blob_bordered.w; h = bottom_blob_bordered.h; int outw = (w - kernel_extent_w) / stride_w + 1; int outh = (h - kernel_extent_h) / stride_h + 1; int out_elempack = (support_packing && opt.use_packing_layout && num_output % 4 == 0) ? 4 : 1; size_t out_elemsize = elemsize / elempack * out_elempack; top_blob.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.blob_allocator); if (top_blob.empty()) return -100; // depth-wise if (channels * elempack == group && group == num_output) { #if __ARM_NEON if (elempack == 4) { if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { convdw3x3s1_pack4_neon(bottom_blob_bordered, top_blob, weight_data_pack4, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw3x3s2_pack4_neon(bottom_blob_bordered, top_blob, weight_data_pack4, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { convdw5x5s1_pack4_neon(bottom_blob_bordered, top_blob, weight_data_pack4, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw5x5s2_pack4_neon(bottom_blob_bordered, top_blob, weight_data_pack4, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else { const int maxk = kernel_w * kernel_h; // kernel offsets std::vector _space_ofs(maxk); int* space_ofs = &_space_ofs[0]; { int p1 = 0; int p2 = 0; int gap = w * dilation_h - kernel_w * dilation_w; for (int i = 0; i < kernel_h; i++) { for (int j = 0; j < kernel_w; j++) { space_ofs[p1] = p2; p1++; p2 += dilation_w; } p2 += gap; } } #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < channels; g++) { float* outptr = top_blob.channel(g); const float* kptr = (const float*)weight_data_pack4 + maxk * g * 4; const Mat m = bottom_blob_bordered.channel(g); for (int i = 0; i < outh; i++) { for (int j = 0; j < outw; j++) { float32x4_t _sum = vdupq_n_f32(0.f); if (bias_term) { _sum = vld1q_f32(((const float*)bias_data) + g * 4); } const float* sptr = m.row(i * stride_h) + j * stride_w * 4; for (int k = 0; k < maxk; k++) { float32x4_t _val = vld1q_f32(sptr + space_ofs[k] * 4); float32x4_t _w = vld1q_f32(kptr + k * 4); _sum = vmlaq_f32(_sum, _val, _w); } _sum = activation_ps(_sum, activation_type, activation_params); vst1q_f32(outptr + j * 4, _sum); } outptr += outw * 4; } } return 0; } } #endif // __ARM_NEON if (elempack == 1) { if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { convdw3x3s1_neon(bottom_blob_bordered, top_blob, weight_data, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw3x3s2_neon(bottom_blob_bordered, top_blob, weight_data, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { convdw5x5s1_neon(bottom_blob_bordered, top_blob, weight_data, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw5x5s2_neon(bottom_blob_bordered, top_blob, weight_data, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } } } // group convolution const int channels_g = channels * elempack / group; const int num_output_g = num_output / group; int g_elempack = (support_packing && opt.use_packing_layout && channels_g % 4 == 0) ? 4 : 1; int out_g_elempack = (support_packing && opt.use_packing_layout && num_output_g % 4 == 0) ? 4 : 1; // unpacking Mat bottom_blob_bordered_unpacked = bottom_blob_bordered; if (elempack == 4 && g_elempack == 1) { Option opt_p = opt; opt_p.blob_allocator = opt.workspace_allocator; convert_packing(bottom_blob_bordered, bottom_blob_bordered_unpacked, 1, opt_p); } Mat top_blob_unpacked = top_blob; if (out_g_elempack == 1 && out_elempack == 4) { top_blob_unpacked.create(outw, outh, num_output, out_elemsize / out_elempack, 1, opt.workspace_allocator); if (top_blob_unpacked.empty()) return -100; } for (int g = 0; g < group; g++) { const Mat bottom_blob_bordered_g = bottom_blob_bordered_unpacked.channel_range(channels_g * g / g_elempack, channels_g / g_elempack); Mat top_blob_g = top_blob_unpacked.channel_range(num_output_g * g / out_g_elempack, num_output_g / out_g_elempack); const ncnn::Layer* op = group_ops[g]; Option opt_g = opt; opt_g.blob_allocator = top_blob_unpacked.allocator; // forward op->forward(bottom_blob_bordered_g, top_blob_g, opt_g); } // packing if (out_g_elempack == 1 && out_elempack == 4) { convert_packing(top_blob_unpacked, top_blob, 4, opt); } else { top_blob = top_blob_unpacked; } return 0; } #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC int ConvolutionDepthWise_arm::forward_fp16s(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const { int w = bottom_blob.w; int h = bottom_blob.h; int channels = bottom_blob.c; size_t elemsize = bottom_blob.elemsize; int elempack = bottom_blob.elempack; const int kernel_extent_w = dilation_w * (kernel_w - 1) + 1; const int kernel_extent_h = dilation_h * (kernel_h - 1) + 1; Mat bottom_blob_bordered; make_padding(bottom_blob, bottom_blob_bordered, opt); if (bottom_blob_bordered.empty()) return -100; w = bottom_blob_bordered.w; h = bottom_blob_bordered.h; int outw = (w - kernel_extent_w) / stride_w + 1; int outh = (h - kernel_extent_h) / stride_h + 1; int out_elempack = (support_packing && opt.use_packing_layout && num_output % 4 == 0) ? 4 : 1; size_t out_elemsize = elemsize / elempack * out_elempack; top_blob.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.blob_allocator); if (top_blob.empty()) return -100; // depth-wise if (channels * elempack == group && group == num_output) { if (elempack == 4) { { const int maxk = kernel_w * kernel_h; // kernel offsets std::vector _space_ofs(maxk); int* space_ofs = &_space_ofs[0]; { int p1 = 0; int p2 = 0; int gap = w * dilation_h - kernel_w * dilation_w; for (int i = 0; i < kernel_h; i++) { for (int j = 0; j < kernel_w; j++) { space_ofs[p1] = p2; p1++; p2 += dilation_w; } p2 += gap; } } #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < channels; g++) { __fp16* outptr = top_blob.channel(g); const __fp16* kptr = (const __fp16*)weight_data_pack4_fp16 + maxk * g * 4; const Mat m = bottom_blob_bordered.channel(g); for (int i = 0; i < outh; i++) { for (int j = 0; j < outw; j++) { float32x4_t _sum = vdupq_n_f32(0.f); if (bias_term) { _sum = vld1q_f32(((const float*)bias_data) + g * 4); } const __fp16* sptr = m.row(i * stride_h) + j * stride_w * 4; for (int k = 0; k < maxk; k++) { float32x4_t _val = vcvt_f32_f16(vld1_f16(sptr + space_ofs[k] * 4)); float32x4_t _w = vcvt_f32_f16(vld1_f16(kptr + k * 4)); _sum = vfmaq_f32(_sum, _val, _w); } _sum = activation_ps(_sum, activation_type, activation_params); vst1_f16(outptr + j * 4, vcvt_f16_f32(_sum)); } outptr += outw * 4; } } } return 0; } if (elempack == 1) { { const int maxk = kernel_w * kernel_h; // kernel offsets std::vector _space_ofs(maxk); int* space_ofs = &_space_ofs[0]; { int p1 = 0; int p2 = 0; int gap = w * dilation_h - kernel_w * dilation_w; for (int i = 0; i < kernel_h; i++) { for (int j = 0; j < kernel_w; j++) { space_ofs[p1] = p2; p1++; p2 += dilation_w; } p2 += gap; } } #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < group; g++) { __fp16* outptr = top_blob.channel(g); const __fp16* kptr = (const __fp16*)weight_data_fp16 + maxk * g; const Mat m = bottom_blob_bordered.channel(g); for (int i = 0; i < outh; i++) { for (int j = 0; j < outw; j++) { float sum = 0.f; if (bias_term) sum = bias_data[g]; const __fp16* sptr = m.row(i * stride_h) + j * stride_w; for (int k = 0; k < maxk; k++) { float val = (float)sptr[space_ofs[k]]; float w = (float)kptr[k]; sum += val * w; } sum = activation_ss(sum, activation_type, activation_params); outptr[j] = (__fp16)sum; } outptr += outw; } } } } return 0; } // group convolution const int channels_g = channels * elempack / group; const int num_output_g = num_output / group; int g_elempack = (support_packing && opt.use_packing_layout && channels_g % 4 == 0) ? 4 : 1; int out_g_elempack = (support_packing && opt.use_packing_layout && num_output_g % 4 == 0) ? 4 : 1; // unpacking Mat bottom_blob_bordered_unpacked = bottom_blob_bordered; if (elempack == 4 && g_elempack == 1) { Option opt_p = opt; opt_p.blob_allocator = opt.workspace_allocator; convert_packing(bottom_blob_bordered, bottom_blob_bordered_unpacked, 1, opt_p); } Mat top_blob_unpacked = top_blob; if (out_g_elempack == 1 && out_elempack == 4) { top_blob_unpacked.create(outw, outh, num_output, out_elemsize / out_elempack, 1, opt.workspace_allocator); if (top_blob_unpacked.empty()) return -100; } for (int g = 0; g < group; g++) { const Mat bottom_blob_bordered_g = bottom_blob_bordered_unpacked.channel_range(channels_g * g / g_elempack, channels_g / g_elempack); Mat top_blob_g = top_blob_unpacked.channel_range(num_output_g * g / out_g_elempack, num_output_g / out_g_elempack); const ncnn::Layer* op = group_ops[g]; Option opt_g = opt; opt_g.blob_allocator = top_blob_unpacked.allocator; // forward op->forward(bottom_blob_bordered_g, top_blob_g, opt_g); } // packing if (out_g_elempack == 1 && out_elempack == 4) { convert_packing(top_blob_unpacked, top_blob, 4, opt); } else { top_blob = top_blob_unpacked; } return 0; } int ConvolutionDepthWise_arm::forward_fp16sa(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const { int w = bottom_blob.w; int h = bottom_blob.h; int channels = bottom_blob.c; size_t elemsize = bottom_blob.elemsize; int elempack = bottom_blob.elempack; const int kernel_extent_w = dilation_w * (kernel_w - 1) + 1; const int kernel_extent_h = dilation_h * (kernel_h - 1) + 1; Mat bottom_blob_bordered; make_padding(bottom_blob, bottom_blob_bordered, opt); if (bottom_blob_bordered.empty()) return -100; w = bottom_blob_bordered.w; h = bottom_blob_bordered.h; int outw = (w - kernel_extent_w) / stride_w + 1; int outh = (h - kernel_extent_h) / stride_h + 1; int out_elempack = (support_packing && opt.use_packing_layout && num_output % 4 == 0) ? 4 : 1; size_t out_elemsize = elemsize / elempack * out_elempack; top_blob.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.blob_allocator); if (top_blob.empty()) return -100; // depth-wise if (channels * elempack == group && group == num_output) { if (elempack == 4) { { const int maxk = kernel_w * kernel_h; // kernel offsets std::vector _space_ofs(maxk); int* space_ofs = &_space_ofs[0]; { int p1 = 0; int p2 = 0; int gap = w * dilation_h - kernel_w * dilation_w; for (int i = 0; i < kernel_h; i++) { for (int j = 0; j < kernel_w; j++) { space_ofs[p1] = p2; p1++; p2 += dilation_w; } p2 += gap; } } #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < channels; g++) { __fp16* outptr = top_blob.channel(g); const __fp16* kptr = (const __fp16*)weight_data_pack4_fp16 + maxk * g * 4; const Mat m = bottom_blob_bordered.channel(g); for (int i = 0; i < outh; i++) { for (int j = 0; j < outw; j++) { float16x4_t _sum = vdup_n_f16((__fp16)0.f); if (bias_term) { _sum = vld1_f16(((const __fp16*)bias_data_fp16) + g * 4); } const __fp16* sptr = m.row(i * stride_h) + j * stride_w * 4; for (int k = 0; k < maxk; k++) { float16x4_t _val = vld1_f16(sptr + space_ofs[k] * 4); float16x4_t _w = vld1_f16(kptr + k * 4); _sum = vfma_f16(_sum, _val, _w); } _sum = activation_ps(_sum, activation_type, activation_params); vst1_f16(outptr + j * 4, _sum); } outptr += outw * 4; } } } return 0; } if (elempack == 1) { { const int maxk = kernel_w * kernel_h; // kernel offsets std::vector _space_ofs(maxk); int* space_ofs = &_space_ofs[0]; { int p1 = 0; int p2 = 0; int gap = w * dilation_h - kernel_w * dilation_w; for (int i = 0; i < kernel_h; i++) { for (int j = 0; j < kernel_w; j++) { space_ofs[p1] = p2; p1++; p2 += dilation_w; } p2 += gap; } } #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < group; g++) { __fp16* outptr = top_blob.channel(g); const __fp16* kptr = (const __fp16*)weight_data_fp16 + maxk * g; const Mat m = bottom_blob_bordered.channel(g); for (int i = 0; i < outh; i++) { for (int j = 0; j < outw; j++) { float sum = 0.f; if (bias_term) sum = bias_data[g]; const __fp16* sptr = m.row(i * stride_h) + j * stride_w; for (int k = 0; k < maxk; k++) { __fp16 val = sptr[space_ofs[k]]; __fp16 w = kptr[k]; sum += val * w; } if (activation_type == 1) { sum = std::max(sum, 0.f); } else if (activation_type == 2) { float slope = activation_params[0]; sum = sum > 0.f ? sum : sum * slope; } else if (activation_type == 3) { float min = activation_params[0]; float max = activation_params[1]; if (sum < min) sum = min; if (sum > max) sum = max; } else if (activation_type == 4) { sum = static_cast(1.f / (1.f + exp(-sum))); } else if (activation_type == 5) { sum = static_cast(sum * tanh(log(exp(sum) + 1.f))); } outptr[j] = (__fp16)sum; } outptr += outw; } } } } return 0; } // group convolution const int channels_g = channels * elempack / group; const int num_output_g = num_output / group; int g_elempack = (support_packing && opt.use_packing_layout && channels_g % 4 == 0) ? 4 : 1; int out_g_elempack = (support_packing && opt.use_packing_layout && num_output_g % 4 == 0) ? 4 : 1; // unpacking Mat bottom_blob_bordered_unpacked = bottom_blob_bordered; if (elempack == 4 && g_elempack == 1) { Option opt_p = opt; opt_p.blob_allocator = opt.workspace_allocator; convert_packing(bottom_blob_bordered, bottom_blob_bordered_unpacked, 1, opt_p); } Mat top_blob_unpacked = top_blob; if (out_g_elempack == 1 && out_elempack == 4) { top_blob_unpacked.create(outw, outh, num_output, out_elemsize / out_elempack, 1, opt.workspace_allocator); if (top_blob_unpacked.empty()) return -100; } for (int g = 0; g < group; g++) { const Mat bottom_blob_bordered_g = bottom_blob_bordered_unpacked.channel_range(channels_g * g / g_elempack, channels_g / g_elempack); Mat top_blob_g = top_blob_unpacked.channel_range(num_output_g * g / out_g_elempack, num_output_g / out_g_elempack); const ncnn::Layer* op = group_ops[g]; Option opt_g = opt; opt_g.blob_allocator = top_blob_unpacked.allocator; // forward op->forward(bottom_blob_bordered_g, top_blob_g, opt_g); } // packing if (out_g_elempack == 1 && out_elempack == 4) { convert_packing(top_blob_unpacked, top_blob, 4, opt); } else { top_blob = top_blob_unpacked; } return 0; } #endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC int ConvolutionDepthWise_arm::forward_bf16s(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const { int w = bottom_blob.w; int h = bottom_blob.h; int channels = bottom_blob.c; size_t elemsize = bottom_blob.elemsize; int elempack = bottom_blob.elempack; const int kernel_extent_w = dilation_w * (kernel_w - 1) + 1; const int kernel_extent_h = dilation_h * (kernel_h - 1) + 1; Mat bottom_blob_bordered; make_padding(bottom_blob, bottom_blob_bordered, opt); if (bottom_blob_bordered.empty()) return -100; w = bottom_blob_bordered.w; h = bottom_blob_bordered.h; int outw = (w - kernel_extent_w) / stride_w + 1; int outh = (h - kernel_extent_h) / stride_h + 1; int out_elempack = (support_packing && opt.use_packing_layout && num_output % 4 == 0) ? 4 : 1; size_t out_elemsize = elemsize / elempack * out_elempack; top_blob.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.blob_allocator); if (top_blob.empty()) return -100; // depth-wise if (channels * elempack == group && group == num_output) { #if __ARM_NEON if (elempack == 4) { if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { convdw3x3s1_pack4_bf16s_neon(bottom_blob_bordered, top_blob, weight_data_pack4_bf16, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } } else if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw3x3s2_pack4_bf16s_neon(bottom_blob_bordered, top_blob, weight_data_pack4_bf16, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } } else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { convdw5x5s1_pack4_bf16s_neon(bottom_blob_bordered, top_blob, weight_data_pack4_bf16, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } } else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw5x5s2_pack4_bf16s_neon(bottom_blob_bordered, top_blob, weight_data_pack4_bf16, bias_data, opt); if (activation) { activation->forward_inplace(top_blob, opt); } } else { const int maxk = kernel_w * kernel_h; // kernel offsets std::vector _space_ofs(maxk); int* space_ofs = &_space_ofs[0]; { int p1 = 0; int p2 = 0; int gap = w * dilation_h - kernel_w * dilation_w; for (int i = 0; i < kernel_h; i++) { for (int j = 0; j < kernel_w; j++) { space_ofs[p1] = p2; p1++; p2 += dilation_w; } p2 += gap; } } #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < channels; g++) { unsigned short* outptr = top_blob.channel(g); const unsigned short* kptr = (const unsigned short*)weight_data_pack4_bf16 + maxk * g * 4; const Mat m = bottom_blob_bordered.channel(g); for (int i = 0; i < outh; i++) { for (int j = 0; j < outw; j++) { float32x4_t _sum = vdupq_n_f32(0.f); if (bias_term) { _sum = vld1q_f32(((const float*)bias_data) + g * 4); } const unsigned short* sptr = m.row(i * stride_h) + j * stride_w * 4; for (int k = 0; k < maxk; k++) { float32x4_t _val = vreinterpretq_f32_u32(vshll_n_u16(vld1_u16(sptr + space_ofs[k] * 4), 16)); float32x4_t _w = vreinterpretq_f32_u32(vshll_n_u16(vld1_u16(kptr + k * 4), 16)); _sum = vmlaq_f32(_sum, _val, _w); } _sum = activation_ps(_sum, activation_type, activation_params); vst1_u16(outptr + j * 4, vshrn_n_u32(vreinterpretq_u32_f32(_sum), 16)); } outptr += outw * 4; } } } return 0; } #endif // __ARM_NEON if (elempack == 1) { // if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) // { // convdw3x3s1_neon(bottom_blob_bordered, top_blob, weight_data_bf16, bias_data, opt); // // if (activation) // { // activation->forward_inplace(top_blob, opt); // } // // return 0; // } // else if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) // { // convdw3x3s2_neon(bottom_blob_bordered, top_blob, weight_data_bf16, bias_data, opt); // // if (activation) // { // activation->forward_inplace(top_blob, opt); // } // // return 0; // } // else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) // { // convdw5x5s1_neon(bottom_blob_bordered, top_blob, weight_data_bf16, bias_data, opt); // // if (activation) // { // activation->forward_inplace(top_blob, opt); // } // // return 0; // } // else if (kernel_w == 5 && kernel_h == 5 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) // { // convdw5x5s2_neon(bottom_blob_bordered, top_blob, weight_data_bf16, bias_data, opt); // // if (activation) // { // activation->forward_inplace(top_blob, opt); // } // // return 0; // } // else { const int maxk = kernel_w * kernel_h; // kernel offsets std::vector _space_ofs(maxk); int* space_ofs = &_space_ofs[0]; { int p1 = 0; int p2 = 0; int gap = w * dilation_h - kernel_w * dilation_w; for (int i = 0; i < kernel_h; i++) { for (int j = 0; j < kernel_w; j++) { space_ofs[p1] = p2; p1++; p2 += dilation_w; } p2 += gap; } } #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < group; g++) { unsigned short* outptr = top_blob.channel(g); const unsigned short* kptr = (const unsigned short*)weight_data_bf16 + maxk * g; const Mat m = bottom_blob_bordered.channel(g); for (int i = 0; i < outh; i++) { for (int j = 0; j < outw; j++) { float sum = 0.f; if (bias_term) sum = bias_data[g]; const unsigned short* sptr = m.row(i * stride_h) + j * stride_w; for (int k = 0; k < maxk; k++) { float val = bfloat16_to_float32(sptr[space_ofs[k]]); float w = bfloat16_to_float32(kptr[k]); sum += val * w; } if (activation_type == 1) { sum = std::max(sum, 0.f); } else if (activation_type == 2) { float slope = activation_params[0]; sum = sum > 0.f ? sum : sum * slope; } else if (activation_type == 3) { float min = activation_params[0]; float max = activation_params[1]; if (sum < min) sum = min; if (sum > max) sum = max; } else if (activation_type == 4) { sum = static_cast(1.f / (1.f + exp(-sum))); } else if (activation_type == 5) { sum = static_cast(sum * tanh(log(exp(sum) + 1.f))); } outptr[j] = float32_to_bfloat16(sum); } outptr += outw; } } } } return 0; } // group convolution const int channels_g = channels * elempack / group; const int num_output_g = num_output / group; int g_elempack = (support_packing && opt.use_packing_layout && channels_g % 4 == 0) ? 4 : 1; int out_g_elempack = (support_packing && opt.use_packing_layout && num_output_g % 4 == 0) ? 4 : 1; // unpacking Mat bottom_blob_bordered_unpacked = bottom_blob_bordered; if (elempack == 4 && g_elempack == 1) { Option opt_p = opt; opt_p.blob_allocator = opt.workspace_allocator; convert_packing(bottom_blob_bordered, bottom_blob_bordered_unpacked, 1, opt_p); } Mat top_blob_unpacked = top_blob; if (out_g_elempack == 1 && out_elempack == 4) { top_blob_unpacked.create(outw, outh, num_output, out_elemsize / out_elempack, 1, opt.workspace_allocator); if (top_blob_unpacked.empty()) return -100; } for (int g = 0; g < group; g++) { const Mat bottom_blob_bordered_g = bottom_blob_bordered_unpacked.channel_range(channels_g * g / g_elempack, channels_g / g_elempack); Mat top_blob_g = top_blob_unpacked.channel_range(num_output_g * g / out_g_elempack, num_output_g / out_g_elempack); const ncnn::Layer* op = group_ops[g]; Option opt_g = opt; opt_g.blob_allocator = top_blob_unpacked.allocator; // forward op->forward(bottom_blob_bordered_g, top_blob_g, opt_g); } // packing if (out_g_elempack == 1 && out_elempack == 4) { convert_packing(top_blob_unpacked, top_blob, 4, opt); } else { top_blob = top_blob_unpacked; } return 0; } int ConvolutionDepthWise_arm::forward_int8_arm(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const { int w = bottom_blob.w; int h = bottom_blob.h; int channels = bottom_blob.c; size_t elemsize = bottom_blob.elemsize; const int kernel_extent_w = dilation_w * (kernel_w - 1) + 1; const int kernel_extent_h = dilation_h * (kernel_h - 1) + 1; Mat bottom_blob_unbordered = bottom_blob; if (elemsize != 1) { bottom_blob_unbordered.create(w, h, channels, (size_t)1u, opt.workspace_allocator); if (bottom_blob_unbordered.empty()) return -100; const int channels_g = channels / group; // quantize, scale and round to nearest #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < group; g++) { Option opt_g = opt; opt_g.num_threads = 1; opt_g.blob_allocator = bottom_blob_unbordered.allocator; const Mat bottom_blob_g = bottom_blob.channel_range(channels_g * g, channels_g); Mat bottom_blob_int8_g = bottom_blob_unbordered.channel_range(channels_g * g, channels_g); quantize_float32_to_int8(bottom_blob_g, bottom_blob_int8_g, bottom_blob_int8_scales[g], opt_g); } } Mat bottom_blob_bordered; make_padding(bottom_blob_unbordered, bottom_blob_bordered, opt); if (bottom_blob_bordered.empty()) return -100; w = bottom_blob_bordered.w; h = bottom_blob_bordered.h; int outw = (w - kernel_extent_w) / stride_w + 1; int outh = (h - kernel_extent_h) / stride_h + 1; // int8 size_t out_elemsize = use_int8_requantize ? 1u : 4u; top_blob.create(outw, outh, num_output, out_elemsize, opt.blob_allocator); if (top_blob.empty()) return -100; // depth-wise if (channels == group && group == num_output) { if (use_int8_requantize) { std::vector requantize_scales; for (int g = 0; g < group; g++) { float scale_in; if (weight_data_int8_scales[g] == 0) scale_in = 0; else scale_in = 1.f / (bottom_blob_int8_scales[g] * weight_data_int8_scales[g]); float scale_out = top_blob_int8_scale; requantize_scales.push_back(scale_in); requantize_scales.push_back(scale_out); } if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 1 && stride_h == 1) { convdw3x3s1_int8_requant_neon(bottom_blob_bordered, top_blob, weight_data, bias_data, requantize_scales, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw3x3s2_int8_requant_neon(bottom_blob_bordered, top_blob, weight_data, bias_data, requantize_scales, opt); if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } } else { // std::vector dequantize_scales; // for (int g=0; gforward_inplace(top_blob, opt); } return 0; } else if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2) { convdw3x3s2_int8_neon(bottom_blob_bordered, top_blob, weight_data, opt); // convdw3x3s2_int8_dequant_neon(bottom_blob_bordered, top_blob, weight_data, bias_data, dequantize_scales, opt); // dequantize, reverse scale inplace #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < group; g++) { // dequantize and relu float scale_in; if (weight_data_int8_scales[g] == 0) scale_in = 0; else scale_in = 1.f / (bottom_blob_int8_scales[g] * weight_data_int8_scales[g]); Option opt_g = opt; opt_g.num_threads = 1; opt_g.blob_allocator = top_blob.allocator; Mat top_blob_g = top_blob.channel(g); dequantize_int32_to_float32(top_blob_g, scale_in, bias_term ? (const float*)bias_data + g : 0, bias_term ? 0 : 1, opt_g); } if (activation) { activation->forward_inplace(top_blob, opt); } return 0; } } } // group convolution const int channels_g = channels / group; const int num_output_g = num_output / group; #pragma omp parallel for num_threads(opt.num_threads) for (int g = 0; g < group; g++) { const Mat bottom_blob_bordered_g = bottom_blob_bordered.channel_range(channels_g * g, channels_g); Mat top_blob_g = top_blob.channel_range(num_output_g * g, num_output_g); const ncnn::Layer* op = group_ops[g]; Option opt_g = opt; opt_g.blob_allocator = top_blob.allocator; // forward op->forward(bottom_blob_bordered_g, top_blob_g, opt_g); } return 0; } } // namespace ncnn