// 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 "batchnorm.h" #include "pipeline.h" #include namespace ncnn { DEFINE_LAYER_CREATOR(BatchNorm) BatchNorm::BatchNorm() { one_blob_only = true; support_inplace = true; support_vulkan = true; #if NCNN_VULKAN pipeline_batchnorm = 0; pipeline_batchnorm_pack4 = 0; #endif // NCNN_VULKAN } int BatchNorm::load_param(const ParamDict& pd) { channels = pd.get(0, 0); eps = pd.get(1, 0.f); return 0; } int BatchNorm::load_model(const ModelBin& mb) { slope_data = mb.load(channels, 1); if (slope_data.empty()) return -100; mean_data = mb.load(channels, 1); if (mean_data.empty()) return -100; var_data = mb.load(channels, 1); if (var_data.empty()) return -100; bias_data = mb.load(channels, 1); if (bias_data.empty()) return -100; a_data.create(channels); if (a_data.empty()) return -100; b_data.create(channels); if (b_data.empty()) return -100; for (int i=0; iset_optimal_local_size_xyz(32, 32, channels); std::vector specializations(0); pipeline_batchnorm->create("batchnorm", specializations, 3, 5); // pack4 if (channels % 4 == 0) { pipeline_batchnorm_pack4 = new Pipeline(vkdev); pipeline_batchnorm_pack4->set_optimal_local_size_xyz(32, 32, channels / 4); pipeline_batchnorm_pack4->create("batchnorm_pack4", specializations, 3, 5); } return 0; } int BatchNorm::destroy_pipeline() { delete pipeline_batchnorm; pipeline_batchnorm = 0; delete pipeline_batchnorm_pack4; pipeline_batchnorm_pack4 = 0; return 0; } int BatchNorm::forward_inplace(VkMat& bottom_top_blob, VkCompute& cmd, const Option& opt) const { int packing = bottom_top_blob.packing; // fprintf(stderr, "BatchNorm::forward_inplace %p\n", bottom_top_blob.buffer()); std::vector bindings(3); bindings[0] = bottom_top_blob; bindings[1] = packing == 4 ? a_data_gpu_pack4 : a_data_gpu; bindings[2] = packing == 4 ? b_data_gpu_pack4 : b_data_gpu; std::vector constants(5); constants[0].i = bottom_top_blob.dims; constants[1].i = bottom_top_blob.w; constants[2].i = bottom_top_blob.h; constants[3].i = bottom_top_blob.c; constants[4].i = bottom_top_blob.cstep; const Pipeline* pipeline = packing == 4 ? pipeline_batchnorm_pack4 : pipeline_batchnorm; // record cmd.record_prepare_compute_barrier(bottom_top_blob); cmd.record_pipeline(pipeline, bindings, constants, bottom_top_blob); return 0; } #endif // NCNN_VULKAN } // namespace ncnn