| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include "deconvolutiondepthwise_vulkan.h" |
| |
|
| | #include "layer_shader_type.h" |
| | #include "layer_type.h" |
| |
|
| | namespace ncnn { |
| |
|
| | DeconvolutionDepthWise_vulkan::DeconvolutionDepthWise_vulkan() |
| | { |
| | support_vulkan = true; |
| | support_image_storage = true; |
| |
|
| | crop = 0; |
| | output_crop = 0; |
| |
|
| | pipeline_deconvolutiondepthwise = 0; |
| | pipeline_deconvolutiondepthwise_pack4 = 0; |
| | pipeline_deconvolutiondepthwise_pack8 = 0; |
| |
|
| | pipeline_deconvolutiondepthwise_group = 0; |
| | pipeline_deconvolutiondepthwise_group_pack4 = 0; |
| | pipeline_deconvolutiondepthwise_group_pack1to4 = 0; |
| | pipeline_deconvolutiondepthwise_group_pack4to1 = 0; |
| | pipeline_deconvolutiondepthwise_group_pack8 = 0; |
| | pipeline_deconvolutiondepthwise_group_pack1to8 = 0; |
| | pipeline_deconvolutiondepthwise_group_pack4to8 = 0; |
| | pipeline_deconvolutiondepthwise_group_pack8to4 = 0; |
| | pipeline_deconvolutiondepthwise_group_pack8to1 = 0; |
| | } |
| |
|
| | int DeconvolutionDepthWise_vulkan::create_pipeline(const Option& _opt) |
| | { |
| | Option opt = _opt; |
| | const Mat& shape = bottom_shapes.empty() ? Mat() : bottom_shapes[0]; |
| | const Mat& out_shape = top_shapes.empty() ? Mat() : top_shapes[0]; |
| |
|
| | |
| | Mat out_shape_bordered; |
| | if (shape.dims != 0) |
| | { |
| | const int kernel_extent_w = dilation_w * (kernel_w - 1) + 1; |
| | const int kernel_extent_h = dilation_h * (kernel_h - 1) + 1; |
| |
|
| | int outw = (shape.w - 1) * stride_w + kernel_extent_w + output_pad_right; |
| | int outh = (shape.h - 1) * stride_h + kernel_extent_h + output_pad_bottom; |
| |
|
| | out_shape_bordered = Mat(outw, outh, out_shape.c, (void*)0); |
| | } |
| |
|
| | const int maxk = kernel_w * kernel_h; |
| | int channels = (weight_data_size / group) / maxk / (num_output / group) * group; |
| |
|
| | int elempack = opt.use_shader_pack8 && channels % 8 == 0 ? 8 : channels % 4 == 0 ? 4 : 1; |
| | int out_elempack = opt.use_shader_pack8 && num_output % 8 == 0 ? 8 : num_output % 4 == 0 ? 4 : 1; |
| |
|
| | size_t elemsize; |
| | size_t out_elemsize; |
| | if (opt.use_fp16_storage) |
| | { |
| | elemsize = elempack * 2u; |
| | out_elemsize = out_elempack * 2u; |
| | } |
| | else if (opt.use_fp16_packed) |
| | { |
| | elemsize = elempack == 1 ? 4u : elempack * 2u; |
| | out_elemsize = out_elempack == 1 ? 4u : out_elempack * 2u; |
| | } |
| | else |
| | { |
| | elemsize = elempack * 4u; |
| | out_elemsize = out_elempack * 4u; |
| | } |
| |
|
| | Mat shape_packed; |
| | if (shape.dims == 1) shape_packed = Mat(shape.w / elempack, (void*)0, elemsize, elempack); |
| | if (shape.dims == 2) shape_packed = Mat(shape.w, shape.h / elempack, (void*)0, elemsize, elempack); |
| | if (shape.dims == 3) shape_packed = Mat(shape.w, shape.h, shape.c / elempack, (void*)0, elemsize, elempack); |
| |
|
| | Mat out_shape_bordered_packed; |
| | if (out_shape_bordered.dims == 1) out_shape_bordered_packed = Mat(out_shape_bordered.w / out_elempack, (void*)0, out_elemsize, out_elempack); |
| | if (out_shape_bordered.dims == 2) out_shape_bordered_packed = Mat(out_shape_bordered.w, out_shape_bordered.h / out_elempack, (void*)0, out_elemsize, out_elempack); |
| | if (out_shape_bordered.dims == 3) out_shape_bordered_packed = Mat(out_shape_bordered.w, out_shape_bordered.h, out_shape_bordered.c / out_elempack, (void*)0, out_elemsize, out_elempack); |
| |
|
| | |
| | const int channels_g = channels / group; |
| | const int num_output_g = num_output / group; |
| |
|
| | int elempack_g = opt.use_shader_pack8 && channels_g % 8 == 0 ? 8 : channels_g % 4 == 0 ? 4 : 1; |
| | int out_elempack_g = opt.use_shader_pack8 && num_output_g % 8 == 0 ? 8 : num_output_g % 4 == 0 ? 4 : 1; |
| |
|
| | size_t elemsize_g; |
| | size_t out_elemsize_g; |
| | if (opt.use_fp16_storage) |
| | { |
| | elemsize_g = elempack_g * 2u; |
| | out_elemsize_g = out_elempack_g * 2u; |
| | } |
| | else if (opt.use_fp16_packed) |
| | { |
| | elemsize_g = elempack_g == 1 ? 4u : elempack_g * 2u; |
| | out_elemsize_g = out_elempack_g == 1 ? 4u : out_elempack_g * 2u; |
| | } |
| | else |
| | { |
| | elemsize_g = elempack_g * 4u; |
| | out_elemsize_g = out_elempack_g * 4u; |
| | } |
| |
|
| | Mat shape_g_packed; |
| | if (shape.dims == 3) shape_g_packed = Mat(shape.w, shape.h, shape.c / elempack_g, (void*)0, elemsize_g, elempack_g); |
| |
|
| | Mat out_shape_bordered_g_packed; |
| | if (out_shape_bordered.dims == 3) out_shape_bordered_g_packed = Mat(out_shape_bordered.w, out_shape_bordered.h, out_shape_bordered.c / out_elempack_g, (void*)0, out_elemsize_g, out_elempack_g); |
| |
|
| | |
| | if (!vkdev->shape_support_image_storage(shape_packed) || !vkdev->shape_support_image_storage(out_shape_bordered_packed)) |
| | { |
| | support_image_storage = false; |
| | opt.use_image_storage = false; |
| | } |
| |
|
| | |
| | if (channels == group && group == num_output) |
| | { |
| | Mat weight_data_packed(maxk, group / elempack, (void*)0, (size_t)4 * elempack, elempack); |
| | if (!vkdev->shape_support_image_storage(weight_data_packed)) |
| | { |
| | support_image_storage = false; |
| | opt.use_image_storage = false; |
| | } |
| | } |
| | else |
| | { |
| | |
| | if (!vkdev->shape_support_image_storage(shape_g_packed) || !vkdev->shape_support_image_storage(out_shape_bordered_g_packed)) |
| | { |
| | support_image_storage = false; |
| | opt.use_image_storage = false; |
| | } |
| |
|
| | Mat weight_data_packed_groups(maxk, channels_g / elempack_g, num_output_g / out_elempack_g * group, (size_t)4 * elempack_g * out_elempack_g, elempack_g * out_elempack_g); |
| | if (!vkdev->shape_support_image_storage(weight_data_packed_groups)) |
| | { |
| | support_image_storage = false; |
| | opt.use_image_storage = false; |
| | } |
| | } |
| |
|
| | { |
| | crop = ncnn::create_layer(ncnn::LayerType::Crop); |
| | crop->vkdev = vkdev; |
| |
|
| | crop->bottom_shapes.resize(1); |
| | crop->bottom_shapes[0] = out_shape_bordered; |
| | crop->top_shapes.resize(1); |
| | crop->top_shapes[0] = out_shape; |
| |
|
| | ncnn::ParamDict pd; |
| | pd.set(0, pad_left); |
| | pd.set(1, pad_top); |
| | pd.set(2, 0); |
| |
|
| | crop->load_param(pd); |
| |
|
| | crop->create_pipeline(opt); |
| | } |
| |
|
| | { |
| | output_crop = ncnn::create_layer(ncnn::LayerType::Crop); |
| | output_crop->vkdev = vkdev; |
| |
|
| | output_crop->bottom_shapes.resize(1); |
| | output_crop->bottom_shapes[0] = out_shape_bordered; |
| | output_crop->top_shapes.resize(1); |
| | output_crop->top_shapes[0] = out_shape; |
| |
|
| | ncnn::ParamDict pd; |
| | pd.set(0, -233); |
| | pd.set(1, -233); |
| | pd.set(2, -233); |
| |
|
| | output_crop->load_param(pd); |
| |
|
| | output_crop->create_pipeline(opt); |
| | } |
| |
|
| | Mat weight_data_transposed(weight_data.w); |
| | { |
| | float* pt = weight_data_transposed; |
| | const float* p = weight_data; |
| |
|
| | for (int i = 0; i < (channels / group) * (num_output / group) * group; i++) |
| | { |
| | for (int k = 0; k < maxk; k++) |
| | { |
| | pt[maxk - 1 - k] = p[k]; |
| | } |
| |
|
| | p += maxk; |
| | pt += maxk; |
| | } |
| | } |
| |
|
| | std::vector<vk_specialization_type> specializations(11 + 10); |
| | specializations[0].i = kernel_w; |
| | specializations[1].i = kernel_h; |
| | specializations[2].i = dilation_w; |
| | specializations[3].i = dilation_h; |
| | specializations[4].i = stride_w; |
| | specializations[5].i = stride_h; |
| | specializations[6].i = bias_term; |
| | specializations[7].i = group; |
| | specializations[8].i = activation_type; |
| | specializations[9].f = activation_params.w >= 1 ? activation_params[0] : 0.f; |
| | specializations[10].f = activation_params.w == 2 ? activation_params[1] : 0.f; |
| |
|
| | |
| | if (channels == group && group == num_output) |
| | { |
| | Mat weight_data_r2 = weight_data_transposed.reshape(maxk, group); |
| | convert_packing(weight_data_r2, weight_data_packed, elempack, opt); |
| |
|
| | if (bias_term) |
| | { |
| | convert_packing(bias_data, bias_data_packed, out_elempack, opt); |
| | } |
| |
|
| | specializations[11 + 0].i = shape_packed.dims; |
| | specializations[11 + 1].i = shape_packed.w; |
| | specializations[11 + 2].i = shape_packed.h; |
| | specializations[11 + 3].i = shape_packed.c; |
| | specializations[11 + 4].i = shape_packed.cstep; |
| | specializations[11 + 5].i = out_shape_bordered_packed.dims; |
| | specializations[11 + 6].i = out_shape_bordered_packed.w; |
| | specializations[11 + 7].i = out_shape_bordered_packed.h; |
| | specializations[11 + 8].i = out_shape_bordered_packed.c; |
| | specializations[11 + 9].i = out_shape_bordered_packed.cstep; |
| |
|
| | Mat local_size_xyz(8, 8, std::min(4, num_output / out_elempack), (void*)0); |
| | if (out_shape_bordered_packed.dims != 0) |
| | { |
| | local_size_xyz.w = std::min(8, out_shape_bordered_packed.w); |
| | local_size_xyz.h = std::min(8, out_shape_bordered_packed.h); |
| | local_size_xyz.c = std::min(4, out_shape_bordered_packed.c); |
| | } |
| |
|
| | |
| | if (elempack == 1) |
| | { |
| | pipeline_deconvolutiondepthwise = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise->create(LayerShaderType::deconvolutiondepthwise, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack == 4) |
| | { |
| | pipeline_deconvolutiondepthwise_pack4 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_pack4->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_pack4->create(LayerShaderType::deconvolutiondepthwise_pack4, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack == 8) |
| | { |
| | pipeline_deconvolutiondepthwise_pack8 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_pack8->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_pack8->create(LayerShaderType::deconvolutiondepthwise_pack8, opt, specializations); |
| | } |
| |
|
| | return 0; |
| | } |
| |
|
| | |
| | |
| | { |
| | Mat weight_data_r2_groups = weight_data_transposed.reshape(maxk, channels_g, num_output_g * group); |
| |
|
| | weight_data_packed.create(maxk, channels_g / elempack_g, num_output_g / out_elempack_g * group, (size_t)4 * elempack_g * out_elempack_g, elempack_g * out_elempack_g); |
| |
|
| | for (int g = 0; g < group; g++) |
| | { |
| | const Mat weight_data_r2 = weight_data_r2_groups.channel_range(num_output_g * g, num_output_g); |
| |
|
| | Mat weight_data_pack4 = weight_data_packed.channel_range(num_output_g / out_elempack_g * g, num_output_g / out_elempack_g); |
| |
|
| | for (int q = 0; q + (out_elempack_g - 1) < num_output_g; q += out_elempack_g) |
| | { |
| | float* g00 = weight_data_pack4.channel(q / out_elempack_g); |
| |
|
| | for (int p = 0; p + (elempack_g - 1) < channels_g; p += elempack_g) |
| | { |
| | for (int k = 0; k < maxk; k++) |
| | { |
| | for (int i = 0; i < out_elempack_g; i++) |
| | { |
| | const Mat k0 = weight_data_r2.channel(q + i); |
| |
|
| | for (int j = 0; j < elempack_g; j++) |
| | { |
| | const float* k00 = k0.row(p + j); |
| |
|
| | g00[0] = k00[k]; |
| |
|
| | g00++; |
| | } |
| | } |
| | } |
| | } |
| | } |
| | } |
| | } |
| |
|
| | if (bias_term) |
| | { |
| | convert_packing(bias_data, bias_data_packed, out_elempack_g, opt); |
| | } |
| |
|
| | specializations[11 + 0].i = shape_g_packed.dims; |
| | specializations[11 + 1].i = shape_g_packed.w; |
| | specializations[11 + 2].i = shape_g_packed.h; |
| | specializations[11 + 3].i = shape_g_packed.c; |
| | specializations[11 + 4].i = shape_g_packed.cstep; |
| | specializations[11 + 5].i = out_shape_bordered_g_packed.dims; |
| | specializations[11 + 6].i = out_shape_bordered_g_packed.w; |
| | specializations[11 + 7].i = out_shape_bordered_g_packed.h; |
| | specializations[11 + 8].i = out_shape_bordered_g_packed.c; |
| | specializations[11 + 9].i = out_shape_bordered_g_packed.cstep; |
| |
|
| | Mat local_size_xyz(8, 8, std::min(4, num_output / out_elempack_g), (void*)0); |
| | if (out_shape_bordered_g_packed.dims != 0) |
| | { |
| | local_size_xyz.w = std::min(8, out_shape_bordered_g_packed.w); |
| | local_size_xyz.h = std::min(8, out_shape_bordered_g_packed.h); |
| | local_size_xyz.c = std::min(4, out_shape_bordered_g_packed.c); |
| | } |
| |
|
| | |
| | if (elempack_g == 1 && out_elempack_g == 1) |
| | { |
| | pipeline_deconvolutiondepthwise_group = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group->create(LayerShaderType::deconvolutiondepthwise_group, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 4 && out_elempack_g == 4) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack4 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack4->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack4->create(LayerShaderType::deconvolutiondepthwise_group_pack4, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 1 && out_elempack_g == 4) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack1to4 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack1to4->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack1to4->create(LayerShaderType::deconvolutiondepthwise_group_pack1to4, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 4 && out_elempack_g == 1) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack4to1 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack4to1->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack4to1->create(LayerShaderType::deconvolutiondepthwise_group_pack4to1, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 8 && out_elempack_g == 8) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack8 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack8->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack8->create(LayerShaderType::deconvolutiondepthwise_group_pack8, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 1 && out_elempack_g == 8) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack1to8 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack1to8->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack1to8->create(LayerShaderType::deconvolutiondepthwise_group_pack1to8, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 4 && out_elempack_g == 8) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack4to8 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack4to8->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack4to8->create(LayerShaderType::deconvolutiondepthwise_group_pack4to8, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 8 && out_elempack_g == 4) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack8to4 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack8to4->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack8to4->create(LayerShaderType::deconvolutiondepthwise_group_pack8to4, opt, specializations); |
| | } |
| |
|
| | |
| | if (elempack_g == 8 && out_elempack_g == 1) |
| | { |
| | pipeline_deconvolutiondepthwise_group_pack8to1 = new Pipeline(vkdev); |
| | pipeline_deconvolutiondepthwise_group_pack8to1->set_optimal_local_size_xyz(local_size_xyz); |
| | pipeline_deconvolutiondepthwise_group_pack8to1->create(LayerShaderType::deconvolutiondepthwise_group_pack8to1, opt, specializations); |
| | } |
| |
|
| | return 0; |
| | } |
| |
|
| | int DeconvolutionDepthWise_vulkan::destroy_pipeline(const Option& opt) |
| | { |
| | if (crop) |
| | { |
| | crop->destroy_pipeline(opt); |
| | delete crop; |
| | crop = 0; |
| | } |
| |
|
| | if (output_crop) |
| | { |
| | output_crop->destroy_pipeline(opt); |
| | delete output_crop; |
| | output_crop = 0; |
| | } |
| |
|
| | delete pipeline_deconvolutiondepthwise; |
| | pipeline_deconvolutiondepthwise = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_pack4; |
| | pipeline_deconvolutiondepthwise_pack4 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_pack8; |
| | pipeline_deconvolutiondepthwise_pack8 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group; |
| | pipeline_deconvolutiondepthwise_group = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack4; |
| | pipeline_deconvolutiondepthwise_group_pack4 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack1to4; |
| | pipeline_deconvolutiondepthwise_group_pack1to4 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack4to1; |
| | pipeline_deconvolutiondepthwise_group_pack4to1 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack8; |
| | pipeline_deconvolutiondepthwise_group_pack8 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack1to8; |
| | pipeline_deconvolutiondepthwise_group_pack1to8 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack4to8; |
| | pipeline_deconvolutiondepthwise_group_pack4to8 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack8to4; |
| | pipeline_deconvolutiondepthwise_group_pack8to4 = 0; |
| |
|
| | delete pipeline_deconvolutiondepthwise_group_pack8to1; |
| | pipeline_deconvolutiondepthwise_group_pack8to1 = 0; |
| |
|
| | return 0; |
| | } |
| |
|
| | int DeconvolutionDepthWise_vulkan::upload_model(VkTransfer& cmd, const Option& opt) |
| | { |
| | if (crop) |
| | { |
| | crop->upload_model(cmd, opt); |
| | } |
| |
|
| | if (output_crop) |
| | { |
| | output_crop->upload_model(cmd, opt); |
| | } |
| |
|
| | if (support_image_storage && opt.use_image_storage) |
| | { |
| | cmd.record_upload(weight_data_packed, weight_data_gpu_image, opt); |
| | } |
| | else |
| | { |
| | cmd.record_upload(weight_data_packed, weight_data_gpu, opt); |
| | } |
| |
|
| | weight_data_packed.release(); |
| |
|
| | if (bias_term) |
| | { |
| | if (support_image_storage && opt.use_image_storage) |
| | { |
| | cmd.record_upload(bias_data_packed, bias_data_gpu_image, opt); |
| | } |
| | else |
| | { |
| | cmd.record_upload(bias_data_packed, bias_data_gpu, opt); |
| | } |
| |
|
| | bias_data_packed.release(); |
| | } |
| |
|
| | return 0; |
| | } |
| |
|
| | int DeconvolutionDepthWise_vulkan::forward(const VkMat& bottom_blob, VkMat& top_blob, VkCompute& cmd, 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; |
| |
|
| | int outw = (w - 1) * stride_w + kernel_extent_w + output_pad_right; |
| | int outh = (h - 1) * stride_h + kernel_extent_h + output_pad_bottom; |
| | int out_elempack = opt.use_shader_pack8 && num_output % 8 == 0 ? 8 : num_output % 4 == 0 ? 4 : 1; |
| | size_t out_elemsize = elemsize / elempack * out_elempack; |
| |
|
| | if (opt.use_fp16_packed && !opt.use_fp16_storage) |
| | { |
| | if (out_elempack == 8) out_elemsize = 8 * 2u; |
| | if (out_elempack == 4) out_elemsize = 4 * 2u; |
| | if (out_elempack == 1) out_elemsize = 4u; |
| | } |
| |
|
| | VkMat top_blob_bordered; |
| | if (pad_left > 0 || pad_right > 0 || pad_top > 0 || pad_bottom > 0 || (output_w > 0 && output_h > 0)) |
| | { |
| | top_blob_bordered.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.workspace_vkallocator); |
| | } |
| | else |
| | { |
| | top_blob_bordered.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.blob_vkallocator); |
| | } |
| | if (top_blob_bordered.empty()) |
| | return -100; |
| |
|
| | |
| | if (channels == group / elempack && group / elempack == num_output / elempack) |
| | { |
| | std::vector<VkMat> bindings(4); |
| | bindings[0] = bottom_blob; |
| | bindings[1] = top_blob_bordered; |
| | bindings[2] = weight_data_gpu; |
| | bindings[3] = bias_data_gpu; |
| |
|
| | std::vector<vk_constant_type> constants(10); |
| | constants[0].i = bottom_blob.dims; |
| | constants[1].i = bottom_blob.w; |
| | constants[2].i = bottom_blob.h; |
| | constants[3].i = bottom_blob.c; |
| | constants[4].i = bottom_blob.cstep; |
| | constants[5].i = top_blob_bordered.dims; |
| | constants[6].i = top_blob_bordered.w; |
| | constants[7].i = top_blob_bordered.h; |
| | constants[8].i = top_blob_bordered.c; |
| | constants[9].i = top_blob_bordered.cstep; |
| |
|
| | const Pipeline* pipeline = elempack == 8 ? pipeline_deconvolutiondepthwise_pack8 |
| | : elempack == 4 ? pipeline_deconvolutiondepthwise_pack4 |
| | : pipeline_deconvolutiondepthwise; |
| |
|
| | |
| | cmd.record_pipeline(pipeline, bindings, constants, top_blob_bordered); |
| |
|
| | if (pad_left > 0 || pad_right > 0 || pad_top > 0 || pad_bottom > 0) |
| | { |
| | { |
| | VkMat reference_blob; |
| | reference_blob.dims = 2; |
| | reference_blob.w = top_blob_bordered.w - pad_left - pad_right; |
| | reference_blob.h = top_blob_bordered.h - pad_top - pad_bottom; |
| | reference_blob.elempack = 1; |
| |
|
| | std::vector<VkMat> crop_bottom_blobs(2); |
| | crop_bottom_blobs[0] = top_blob_bordered; |
| | crop_bottom_blobs[1] = reference_blob; |
| | std::vector<VkMat> crop_top_blobs(1); |
| | crop->forward(crop_bottom_blobs, crop_top_blobs, cmd, opt); |
| | top_blob = crop_top_blobs[0]; |
| | } |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else if (output_w > 0 && output_h > 0) |
| | { |
| | int wcut = top_blob_bordered.w - output_w; |
| | int hcut = top_blob_bordered.h - output_h; |
| |
|
| | VkMat crop_param_blob(4, (size_t)4u, 1, opt.staging_vkallocator); |
| | int* crop_params = crop_param_blob.mapped(); |
| |
|
| | if (pad_left == -233 || pad_right == -233 || pad_top == -233 || pad_bottom == -233) |
| | { |
| | |
| | crop_params[0] = wcut / 2; |
| | crop_params[1] = hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| | else if (pad_left == -234 || pad_right == -234 || pad_top == -234 || pad_bottom == -234) |
| | { |
| | |
| | crop_params[0] = wcut - wcut / 2; |
| | crop_params[1] = hcut - hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| |
|
| | std::vector<VkMat> crop_inputs(2); |
| | crop_inputs[0] = top_blob_bordered; |
| | crop_inputs[1] = crop_param_blob; |
| |
|
| | std::vector<VkMat> crop_outputs(1); |
| | output_crop->forward(crop_inputs, crop_outputs, cmd, opt); |
| | top_blob = crop_outputs[0]; |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else |
| | { |
| | top_blob = top_blob_bordered; |
| | } |
| |
|
| | return 0; |
| | } |
| |
|
| | const int channels_g = channels * elempack / group; |
| | const int num_output_g = num_output / group; |
| |
|
| | int elempack_g = opt.use_shader_pack8 && channels_g % 8 == 0 ? 8 : channels_g % 4 == 0 ? 4 : 1; |
| | int out_elempack_g = opt.use_shader_pack8 && num_output_g % 8 == 0 ? 8 : num_output_g % 4 == 0 ? 4 : 1; |
| | size_t out_elemsize_g = elemsize / elempack * out_elempack_g; |
| |
|
| | if (opt.use_fp16_packed && !opt.use_fp16_storage) |
| | { |
| | if (out_elempack_g == 8) out_elemsize_g = 8 * 2u; |
| | if (out_elempack_g == 4) out_elemsize_g = 4 * 2u; |
| | if (out_elempack_g == 1) out_elemsize_g = 4u; |
| | } |
| |
|
| | |
| | VkMat bottom_blob_unpacked = bottom_blob; |
| | if (elempack > elempack_g) |
| | { |
| | Option opt_pack1 = opt; |
| | opt_pack1.blob_vkallocator = opt.workspace_vkallocator; |
| |
|
| | vkdev->convert_packing(bottom_blob, bottom_blob_unpacked, elempack_g, cmd, opt_pack1); |
| | } |
| |
|
| | VkMat top_blob_unpacked = top_blob_bordered; |
| | if (out_elempack_g < out_elempack) |
| | { |
| | top_blob_unpacked.create(outw, outh, num_output / out_elempack_g, out_elemsize_g, out_elempack_g, opt.workspace_vkallocator); |
| | if (top_blob_unpacked.empty()) |
| | return -100; |
| | } |
| |
|
| | std::vector<VkMat> bindings(4); |
| | bindings[0] = bottom_blob_unpacked; |
| | bindings[1] = top_blob_unpacked; |
| | bindings[2] = weight_data_gpu; |
| | bindings[3] = bias_data_gpu; |
| |
|
| | std::vector<vk_constant_type> constants(10); |
| | constants[0].i = bottom_blob_unpacked.dims; |
| | constants[1].i = bottom_blob_unpacked.w; |
| | constants[2].i = bottom_blob_unpacked.h; |
| | constants[3].i = bottom_blob_unpacked.c; |
| | constants[4].i = bottom_blob_unpacked.cstep; |
| | constants[5].i = top_blob_unpacked.dims; |
| | constants[6].i = top_blob_unpacked.w; |
| | constants[7].i = top_blob_unpacked.h; |
| | constants[8].i = top_blob_unpacked.c; |
| | constants[9].i = top_blob_unpacked.cstep; |
| |
|
| | const Pipeline* pipeline = 0; |
| | if (elempack_g == 1 && out_elempack_g == 1) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group; |
| | } |
| | else if (elempack_g == 4 && out_elempack_g == 4) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack4; |
| | } |
| | else if (elempack_g == 1 && out_elempack_g == 4) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack1to4; |
| | } |
| | else if (elempack_g == 4 && out_elempack_g == 1) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack4to1; |
| | } |
| | else if (elempack_g == 8 && out_elempack_g == 8) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack8; |
| | } |
| | else if (elempack_g == 1 && out_elempack_g == 8) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack1to8; |
| | } |
| | else if (elempack_g == 4 && out_elempack_g == 8) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack4to8; |
| | } |
| | else if (elempack_g == 8 && out_elempack_g == 4) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack8to4; |
| | } |
| | else if (elempack_g == 8 && out_elempack_g == 1) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack8to1; |
| | } |
| |
|
| | cmd.record_pipeline(pipeline, bindings, constants, top_blob_unpacked); |
| |
|
| | |
| | if (out_elempack_g < out_elempack) |
| | { |
| | vkdev->convert_packing(top_blob_unpacked, top_blob_bordered, out_elempack, cmd, opt); |
| | } |
| | else |
| | { |
| | top_blob_bordered = top_blob_unpacked; |
| | } |
| |
|
| | if (pad_left > 0 || pad_right > 0 || pad_top > 0 || pad_bottom > 0) |
| | { |
| | { |
| | VkMat reference_blob; |
| | reference_blob.dims = 2; |
| | reference_blob.w = top_blob_bordered.w - pad_left - pad_right; |
| | reference_blob.h = top_blob_bordered.h - pad_top - pad_bottom; |
| | reference_blob.elempack = 1; |
| |
|
| | std::vector<VkMat> crop_bottom_blobs(2); |
| | crop_bottom_blobs[0] = top_blob_bordered; |
| | crop_bottom_blobs[1] = reference_blob; |
| | std::vector<VkMat> crop_top_blobs(1); |
| | crop->forward(crop_bottom_blobs, crop_top_blobs, cmd, opt); |
| | top_blob = crop_top_blobs[0]; |
| | } |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else if (output_w > 0 && output_h > 0) |
| | { |
| | int wcut = top_blob_bordered.w - output_w; |
| | int hcut = top_blob_bordered.h - output_h; |
| |
|
| | VkMat crop_param_blob(4, (size_t)4u, 1, opt.staging_vkallocator); |
| | int* crop_params = crop_param_blob.mapped(); |
| |
|
| | if (pad_left == -233 || pad_right == -233 || pad_top == -233 || pad_bottom == -233) |
| | { |
| | |
| | crop_params[0] = wcut / 2; |
| | crop_params[1] = hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| | else if (pad_left == -234 || pad_right == -234 || pad_top == -234 || pad_bottom == -234) |
| | { |
| | |
| | crop_params[0] = wcut - wcut / 2; |
| | crop_params[1] = hcut - hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| |
|
| | std::vector<VkMat> crop_inputs(2); |
| | crop_inputs[0] = top_blob_bordered; |
| | crop_inputs[1] = crop_param_blob; |
| |
|
| | std::vector<VkMat> crop_outputs(1); |
| | output_crop->forward(crop_inputs, crop_outputs, cmd, opt); |
| | top_blob = crop_outputs[0]; |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else |
| | { |
| | top_blob = top_blob_bordered; |
| | } |
| |
|
| | return 0; |
| | } |
| |
|
| | int DeconvolutionDepthWise_vulkan::forward(const VkImageMat& bottom_blob, VkImageMat& top_blob, VkCompute& cmd, 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; |
| |
|
| | int outw = (w - 1) * stride_w + kernel_extent_w + output_pad_right; |
| | int outh = (h - 1) * stride_h + kernel_extent_h + output_pad_bottom; |
| | int out_elempack = opt.use_shader_pack8 && num_output % 8 == 0 ? 8 : num_output % 4 == 0 ? 4 : 1; |
| | size_t out_elemsize = elemsize / elempack * out_elempack; |
| |
|
| | if (opt.use_fp16_packed && !opt.use_fp16_storage) |
| | { |
| | if (out_elempack == 8) out_elemsize = 8 * 2u; |
| | if (out_elempack == 4) out_elemsize = 4 * 2u; |
| | if (out_elempack == 1) out_elemsize = 4u; |
| | } |
| |
|
| | VkImageMat top_blob_bordered; |
| | if (pad_left > 0 || pad_right > 0 || pad_top > 0 || pad_bottom > 0 || (output_w > 0 && output_h > 0)) |
| | { |
| | top_blob_bordered.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.workspace_vkallocator); |
| | } |
| | else |
| | { |
| | top_blob_bordered.create(outw, outh, num_output / out_elempack, out_elemsize, out_elempack, opt.blob_vkallocator); |
| | } |
| | if (top_blob_bordered.empty()) |
| | return -100; |
| |
|
| | |
| | if (channels == group / elempack && group / elempack == num_output / elempack) |
| | { |
| | std::vector<VkImageMat> bindings(4); |
| | bindings[0] = bottom_blob; |
| | bindings[1] = top_blob_bordered; |
| | bindings[2] = weight_data_gpu_image; |
| | bindings[3] = bias_data_gpu_image; |
| |
|
| | std::vector<vk_constant_type> constants(10); |
| | constants[0].i = bottom_blob.dims; |
| | constants[1].i = bottom_blob.w; |
| | constants[2].i = bottom_blob.h; |
| | constants[3].i = bottom_blob.c; |
| | constants[4].i = 0; |
| | constants[5].i = top_blob_bordered.dims; |
| | constants[6].i = top_blob_bordered.w; |
| | constants[7].i = top_blob_bordered.h; |
| | constants[8].i = top_blob_bordered.c; |
| | constants[9].i = 0; |
| |
|
| | const Pipeline* pipeline = elempack == 8 ? pipeline_deconvolutiondepthwise_pack8 |
| | : elempack == 4 ? pipeline_deconvolutiondepthwise_pack4 |
| | : pipeline_deconvolutiondepthwise; |
| |
|
| | |
| | cmd.record_pipeline(pipeline, bindings, constants, top_blob_bordered); |
| |
|
| | if (pad_left > 0 || pad_right > 0 || pad_top > 0 || pad_bottom > 0) |
| | { |
| | { |
| | VkImageMat reference_blob; |
| | reference_blob.dims = 2; |
| | reference_blob.w = top_blob_bordered.w - pad_left - pad_right; |
| | reference_blob.h = top_blob_bordered.h - pad_top - pad_bottom; |
| | reference_blob.elempack = 1; |
| |
|
| | std::vector<VkImageMat> crop_bottom_blobs(2); |
| | crop_bottom_blobs[0] = top_blob_bordered; |
| | crop_bottom_blobs[1] = reference_blob; |
| | std::vector<VkImageMat> crop_top_blobs(1); |
| | crop->forward(crop_bottom_blobs, crop_top_blobs, cmd, opt); |
| | top_blob = crop_top_blobs[0]; |
| | } |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else if (output_w > 0 && output_h > 0) |
| | { |
| | int wcut = top_blob_bordered.w - output_w; |
| | int hcut = top_blob_bordered.h - output_h; |
| |
|
| | VkImageMat crop_param_blob(4, (size_t)4u, 1, opt.staging_vkallocator); |
| | int* crop_params = crop_param_blob.mapped(); |
| |
|
| | if (pad_left == -233 || pad_right == -233 || pad_top == -233 || pad_bottom == -233) |
| | { |
| | |
| | crop_params[0] = wcut / 2; |
| | crop_params[1] = hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| | else if (pad_left == -234 || pad_right == -234 || pad_top == -234 || pad_bottom == -234) |
| | { |
| | |
| | crop_params[0] = wcut - wcut / 2; |
| | crop_params[1] = hcut - hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| |
|
| | std::vector<VkImageMat> crop_inputs(2); |
| | crop_inputs[0] = top_blob_bordered; |
| | crop_inputs[1] = crop_param_blob; |
| |
|
| | std::vector<VkImageMat> crop_outputs(1); |
| | output_crop->forward(crop_inputs, crop_outputs, cmd, opt); |
| | top_blob = crop_outputs[0]; |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else |
| | { |
| | top_blob = top_blob_bordered; |
| | } |
| |
|
| | return 0; |
| | } |
| |
|
| | const int channels_g = channels * elempack / group; |
| | const int num_output_g = num_output / group; |
| |
|
| | int elempack_g = opt.use_shader_pack8 && channels_g % 8 == 0 ? 8 : channels_g % 4 == 0 ? 4 : 1; |
| | int out_elempack_g = opt.use_shader_pack8 && num_output_g % 8 == 0 ? 8 : num_output_g % 4 == 0 ? 4 : 1; |
| | size_t out_elemsize_g = elemsize / elempack * out_elempack_g; |
| |
|
| | if (opt.use_fp16_packed && !opt.use_fp16_storage) |
| | { |
| | if (out_elempack_g == 8) out_elemsize_g = 8 * 2u; |
| | if (out_elempack_g == 4) out_elemsize_g = 4 * 2u; |
| | if (out_elempack_g == 1) out_elemsize_g = 4u; |
| | } |
| |
|
| | |
| | VkImageMat bottom_blob_unpacked = bottom_blob; |
| | if (elempack > elempack_g) |
| | { |
| | Option opt_pack1 = opt; |
| | opt_pack1.blob_vkallocator = opt.workspace_vkallocator; |
| |
|
| | vkdev->convert_packing(bottom_blob, bottom_blob_unpacked, elempack_g, cmd, opt_pack1); |
| | } |
| |
|
| | VkImageMat top_blob_unpacked = top_blob_bordered; |
| | if (out_elempack_g < out_elempack) |
| | { |
| | top_blob_unpacked.create(outw, outh, num_output / out_elempack_g, out_elemsize_g, out_elempack_g, opt.workspace_vkallocator); |
| | if (top_blob_unpacked.empty()) |
| | return -100; |
| | } |
| |
|
| | std::vector<VkImageMat> bindings(4); |
| | bindings[0] = bottom_blob_unpacked; |
| | bindings[1] = top_blob_unpacked; |
| | bindings[2] = weight_data_gpu_image; |
| | bindings[3] = bias_data_gpu_image; |
| |
|
| | std::vector<vk_constant_type> constants(10); |
| | constants[0].i = bottom_blob_unpacked.dims; |
| | constants[1].i = bottom_blob_unpacked.w; |
| | constants[2].i = bottom_blob_unpacked.h; |
| | constants[3].i = bottom_blob_unpacked.c; |
| | constants[4].i = 0; |
| | constants[5].i = top_blob_unpacked.dims; |
| | constants[6].i = top_blob_unpacked.w; |
| | constants[7].i = top_blob_unpacked.h; |
| | constants[8].i = top_blob_unpacked.c; |
| | constants[9].i = 0; |
| |
|
| | const Pipeline* pipeline = 0; |
| | if (elempack_g == 1 && out_elempack_g == 1) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group; |
| | } |
| | else if (elempack_g == 4 && out_elempack_g == 4) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack4; |
| | } |
| | else if (elempack_g == 1 && out_elempack_g == 4) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack1to4; |
| | } |
| | else if (elempack_g == 4 && out_elempack_g == 1) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack4to1; |
| | } |
| | else if (elempack_g == 8 && out_elempack_g == 8) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack8; |
| | } |
| | else if (elempack_g == 1 && out_elempack_g == 8) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack1to8; |
| | } |
| | else if (elempack_g == 4 && out_elempack_g == 8) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack4to8; |
| | } |
| | else if (elempack_g == 8 && out_elempack_g == 4) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack8to4; |
| | } |
| | else if (elempack_g == 8 && out_elempack_g == 1) |
| | { |
| | pipeline = pipeline_deconvolutiondepthwise_group_pack8to1; |
| | } |
| |
|
| | cmd.record_pipeline(pipeline, bindings, constants, top_blob_unpacked); |
| |
|
| | |
| | if (out_elempack_g < out_elempack) |
| | { |
| | vkdev->convert_packing(top_blob_unpacked, top_blob_bordered, out_elempack, cmd, opt); |
| | } |
| | else |
| | { |
| | top_blob_bordered = top_blob_unpacked; |
| | } |
| |
|
| | if (pad_left > 0 || pad_right > 0 || pad_top > 0 || pad_bottom > 0) |
| | { |
| | { |
| | VkImageMat reference_blob; |
| | reference_blob.dims = 2; |
| | reference_blob.w = top_blob_bordered.w - pad_left - pad_right; |
| | reference_blob.h = top_blob_bordered.h - pad_top - pad_bottom; |
| | reference_blob.elempack = 1; |
| |
|
| | std::vector<VkImageMat> crop_bottom_blobs(2); |
| | crop_bottom_blobs[0] = top_blob_bordered; |
| | crop_bottom_blobs[1] = reference_blob; |
| | std::vector<VkImageMat> crop_top_blobs(1); |
| | crop->forward(crop_bottom_blobs, crop_top_blobs, cmd, opt); |
| | top_blob = crop_top_blobs[0]; |
| | } |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else if (output_w > 0 && output_h > 0) |
| | { |
| | int wcut = top_blob_bordered.w - output_w; |
| | int hcut = top_blob_bordered.h - output_h; |
| |
|
| | VkImageMat crop_param_blob(4, (size_t)4u, 1, opt.staging_vkallocator); |
| | int* crop_params = crop_param_blob.mapped(); |
| |
|
| | if (pad_left == -233 || pad_right == -233 || pad_top == -233 || pad_bottom == -233) |
| | { |
| | |
| | crop_params[0] = wcut / 2; |
| | crop_params[1] = hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| | else if (pad_left == -234 || pad_right == -234 || pad_top == -234 || pad_bottom == -234) |
| | { |
| | |
| | crop_params[0] = wcut - wcut / 2; |
| | crop_params[1] = hcut - hcut / 2; |
| | crop_params[2] = 0; |
| | crop_params[3] = top_blob_bordered.w - wcut; |
| | crop_params[4] = top_blob_bordered.h - hcut; |
| | crop_params[5] = top_blob_bordered.c * out_elempack; |
| | } |
| |
|
| | std::vector<VkImageMat> crop_inputs(2); |
| | crop_inputs[0] = top_blob_bordered; |
| | crop_inputs[1] = crop_param_blob; |
| |
|
| | std::vector<VkImageMat> crop_outputs(1); |
| | output_crop->forward(crop_inputs, crop_outputs, cmd, opt); |
| | top_blob = crop_outputs[0]; |
| | if (top_blob.empty()) |
| | return -100; |
| |
|
| | outw = top_blob.w; |
| | outh = top_blob.h; |
| | } |
| | else |
| | { |
| | top_blob = top_blob_bordered; |
| | } |
| |
|
| | return 0; |
| | } |
| |
|
| | } |
| |
|