|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- // 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 "squeeze.h"
-
- namespace ncnn {
-
- Squeeze::Squeeze()
- {
- one_blob_only = true;
- support_inplace = false;
- }
-
- int Squeeze::load_param(const ParamDict& pd)
- {
- squeeze_w = pd.get(0, 0);
- squeeze_h = pd.get(1, 0);
- squeeze_d = pd.get(11, 0);
- squeeze_c = pd.get(2, 0);
- axes = pd.get(3, Mat());
-
- return 0;
- }
-
- int Squeeze::forward(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const
- {
- int w = bottom_blob.w;
- int h = bottom_blob.h;
- int d = bottom_blob.d;
- int channels = bottom_blob.c;
- int dims = bottom_blob.dims;
-
- bool _squeeze_w = false;
- bool _squeeze_h = false;
- bool _squeeze_d = false;
- bool _squeeze_c = false;
-
- if (axes.empty())
- {
- _squeeze_w = w == 1 && squeeze_w;
- _squeeze_h = h == 1 && squeeze_h;
- _squeeze_d = d == 1 && squeeze_d;
- _squeeze_c = channels == 1 && squeeze_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 + axis;
-
- if (dims == 1 && axis == 0)
- {
- _squeeze_w = w == 1;
- }
- if (dims == 2 && axis == 0)
- {
- _squeeze_h = h == 1;
- }
- if (dims == 2 && axis == 1)
- {
- _squeeze_w = w == 1;
- }
- if (dims == 3 && axis == 0)
- {
- _squeeze_c = channels == 1;
- }
- if (dims == 3 && axis == 1)
- {
- _squeeze_h = h == 1;
- }
- if (dims == 3 && axis == 2)
- {
- _squeeze_w = w == 1;
- }
- if (dims == 4 && axis == 0)
- {
- _squeeze_c = channels == 1;
- }
- if (dims == 4 && axis == 1)
- {
- _squeeze_d = d == 1;
- }
- if (dims == 4 && axis == 2)
- {
- _squeeze_h = h == 1;
- }
- if (dims == 4 && axis == 3)
- {
- _squeeze_w = w == 1;
- }
- }
- }
-
- top_blob = bottom_blob;
-
- if (dims == 1)
- {
- if (_squeeze_w)
- {
- top_blob = bottom_blob.reshape(1, opt.blob_allocator);
- }
- }
-
- if (dims == 2)
- {
- if (_squeeze_w && _squeeze_h)
- {
- top_blob = bottom_blob.reshape(1, opt.blob_allocator);
- }
- else if (_squeeze_w)
- {
- top_blob = bottom_blob.reshape(h, opt.blob_allocator);
- }
- else if (_squeeze_h)
- {
- top_blob = bottom_blob.reshape(w, opt.blob_allocator);
- }
- }
-
- if (dims == 3)
- {
- if (_squeeze_w && _squeeze_h && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(1, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_h)
- {
- top_blob = bottom_blob.reshape(channels, opt.blob_allocator);
- }
- else if (_squeeze_h && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(w, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(h, opt.blob_allocator);
- }
- else if (_squeeze_w)
- {
- top_blob = bottom_blob.reshape(h, channels, opt.blob_allocator);
- }
- else if (_squeeze_h)
- {
- top_blob = bottom_blob.reshape(w, channels, opt.blob_allocator);
- }
- else if (_squeeze_c)
- {
- top_blob = bottom_blob.reshape(w, h, opt.blob_allocator);
- }
- }
-
- if (dims == 4)
- {
- if (_squeeze_w && _squeeze_h && _squeeze_d && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(1, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_h && _squeeze_d)
- {
- top_blob = bottom_blob.reshape(channels, opt.blob_allocator);
- }
- else if (_squeeze_h && _squeeze_d && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(w, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_d && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(h, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_h && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(d, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_h)
- {
- top_blob = bottom_blob.reshape(d, channels, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_d)
- {
- top_blob = bottom_blob.reshape(h, channels, opt.blob_allocator);
- }
- else if (_squeeze_h && _squeeze_d)
- {
- top_blob = bottom_blob.reshape(w, channels, opt.blob_allocator);
- }
- else if (_squeeze_h && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(w, d, opt.blob_allocator);
- }
- else if (_squeeze_w && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(h, d, opt.blob_allocator);
- }
- else if (_squeeze_d && _squeeze_c)
- {
- top_blob = bottom_blob.reshape(w, h, opt.blob_allocator);
- }
- else if (_squeeze_w)
- {
- top_blob = bottom_blob.reshape(h, d, channels, opt.blob_allocator);
- }
- else if (_squeeze_h)
- {
- top_blob = bottom_blob.reshape(w, d, channels, opt.blob_allocator);
- }
- else if (_squeeze_d)
- {
- top_blob = bottom_blob.reshape(w, h, channels, opt.blob_allocator);
- }
- else if (_squeeze_c)
- {
- top_blob = bottom_blob.reshape(w, h, d, opt.blob_allocator);
- }
- }
-
- if (top_blob.empty())
- return -100;
-
- return 0;
- }
-
- } // namespace ncnn
|