// 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 "expanddims.h" namespace ncnn { ExpandDims::ExpandDims() { one_blob_only = true; support_inplace = false; } int ExpandDims::load_param(const ParamDict& pd) { expand_w = pd.get(0, 0); expand_h = pd.get(1, 0); expand_c = pd.get(2, 0); axes = pd.get(3, Mat()); return 0; } int ExpandDims::forward(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const { int w = bottom_blob.w; int h = bottom_blob.h; int dims = bottom_blob.dims; bool _expand_w = false; bool _expand_h = false; bool _expand_c = false; if (axes.empty()) { _expand_w = expand_w; _expand_h = expand_h; _expand_c = expand_c; } else { const int* axes_ptr = axes; for (int i = 0; i < axes.w; i++) { int axis = axes_ptr[i]; if (axis < 0) axis = dims + 1 + axis; // +1 for N-dim if (dims == 1 && axis == 1) { _expand_h = true; } if (dims == 1 && axis == 2) { _expand_w = true; } if (dims == 2 && axis == 1) { _expand_c = true; } if (dims == 2 && axis == 2) { _expand_h = true; } if (dims == 2 && axis == 3) { _expand_w = true; } } } top_blob = bottom_blob; if (dims == 1) { if (_expand_w && _expand_h) { top_blob = bottom_blob.reshape(1, w, 1, opt.blob_allocator); } else if (_expand_w) { top_blob = bottom_blob.reshape(1, w, opt.blob_allocator); } else if (_expand_h) { top_blob = bottom_blob.reshape(w, 1, opt.blob_allocator); } } if (dims == 2) { if (_expand_w) { top_blob = bottom_blob.reshape(1, w, h, opt.blob_allocator); } else if (_expand_h) { top_blob = bottom_blob.reshape(w, 1, h, opt.blob_allocator); } else if (_expand_c) { top_blob = bottom_blob.reshape(w, h, 1, opt.blob_allocator); } } if (top_blob.empty()) return -100; return 0; } } // namespace ncnn