// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2019 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 "sigmoid_vulkan.h" #include namespace ncnn { DEFINE_LAYER_CREATOR(Sigmoid_vulkan) Sigmoid_vulkan::Sigmoid_vulkan() { support_vulkan = true; pipeline_sigmoid = 0; pipeline_sigmoid_pack4 = 0; } int Sigmoid_vulkan::create_pipeline(const Option& opt) { std::vector specializations; // pack1 { pipeline_sigmoid = new Pipeline(vkdev); pipeline_sigmoid->set_optimal_local_size_xyz(); pipeline_sigmoid->create("sigmoid", opt, specializations, 1, 5); } // pack4 { pipeline_sigmoid_pack4 = new Pipeline(vkdev); pipeline_sigmoid_pack4->set_optimal_local_size_xyz(); pipeline_sigmoid_pack4->create("sigmoid_pack4", opt, specializations, 1, 5); } return 0; } int Sigmoid_vulkan::destroy_pipeline(const Option& opt) { delete pipeline_sigmoid; pipeline_sigmoid = 0; delete pipeline_sigmoid_pack4; pipeline_sigmoid_pack4 = 0; return 0; } int Sigmoid_vulkan::forward_inplace(VkMat& bottom_top_blob, VkCompute& cmd, const Option& opt) const { int packing = bottom_top_blob.packing; std::vector bindings(1); bindings[0] = bottom_top_blob; 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_sigmoid_pack4 : pipeline_sigmoid; cmd.record_pipeline(pipeline, bindings, constants, bottom_top_blob); return 0; } } // namespace ncnn