|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628 |
- // 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 "binaryop.h"
-
- #include <math.h>
-
- namespace ncnn {
-
- BinaryOp::BinaryOp()
- {
- one_blob_only = false;
- support_inplace = false;
- }
-
- int BinaryOp::load_param(const ParamDict& pd)
- {
- op_type = pd.get(0, 0);
- with_scalar = pd.get(1, 0);
- b = pd.get(2, 0.f);
-
- if (with_scalar != 0)
- {
- one_blob_only = true;
- support_inplace = true;
- }
-
- return 0;
- }
-
- // broadcasting rule
- // https://github.com/Tencent/ncnn/wiki/binaryop-broadcasting
-
- template<typename Op>
- static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
- {
- Op op;
-
- int w = a.w;
- int h = a.h;
- int channels = a.c;
- int size = w * h;
- size_t elemsize = a.elemsize;
-
- int w1 = b.w;
- int h1 = b.h;
- int channels1 = b.c;
- int size1 = w1 * h1;
-
- if (a.dims == 3)
- {
- if (b.dims == 3)
- {
- if (w1 == 1 && h1 == 1 && channels1 == channels)
- {
- // special type 1
- c.create(w, h, channels, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels; q++)
- {
- const float* ptr = a.channel(q);
- const float* b0 = b.channel(q);
- float* outptr = c.channel(q);
- for (int i = 0; i < size; i++)
- {
- outptr[i] = op(ptr[i], b0[0]);
- }
- }
-
- return 0;
- }
-
- if (w1 == w && h1 == h && channels1 == 1)
- {
- // special type 2
- c.create(w, h, channels, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels; q++)
- {
- const float* ptr = a.channel(q);
- const float* ptr1 = b;
- float* outptr = c.channel(q);
- for (int i = 0; i < size; i++)
- {
- outptr[i] = op(ptr[i], ptr1[i]);
- }
- }
-
- return 0;
- }
-
- if (w == 1 && h == 1 && channels1 == channels)
- {
- // special type 3
- c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels1; q++)
- {
- const float* a0 = a.channel(q);
- const float* ptr1 = b.channel(q);
- float* outptr = c.channel(q);
- for (int i = 0; i < size1; i++)
- {
- outptr[i] = op(a0[0], ptr1[i]);
- }
- }
-
- return 0;
- }
-
- if (w1 == w && h1 == h && channels == 1)
- {
- // special type 4
- c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels1; q++)
- {
- const float* ptr = a;
- const float* ptr1 = b.channel(q);
- float* outptr = c.channel(q);
- for (int i = 0; i < size1; i++)
- {
- outptr[i] = op(ptr[i], ptr1[i]);
- }
- }
-
- return 0;
- }
-
- // type 19
- c.create(w, h, channels, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels; q++)
- {
- const float* ptr = a.channel(q);
- const float* ptr1 = b.channel(q);
- float* outptr = c.channel(q);
-
- for (int i = 0; i < size; i++)
- {
- outptr[i] = op(ptr[i], ptr1[i]);
- }
- }
-
- return 0;
- }
-
- c.create(w, h, channels, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- if (b.dims == 2)
- {
- // type 18
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels; q++)
- {
- const float* ptr = a.channel(q);
- const float* ptr1 = b.row(q);
- float* outptr = c.channel(q);
-
- for (int y = 0; y < h; y++)
- {
- const float b0 = ptr1[y];
- for (int x = 0; x < w; x++)
- {
- outptr[x] = op(ptr[x], b0);
- }
-
- ptr += w;
- outptr += w;
- }
- }
-
- return 0;
- }
-
- if (b.dims == 1)
- {
- if (b.w == 1)
- {
- // type 16
- const float b0 = b[0];
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels; q++)
- {
- const float* ptr = a.channel(q);
- float* outptr = c.channel(q);
-
- for (int i = 0; i < size; i++)
- {
- outptr[i] = op(ptr[i], b0);
- }
- }
-
- return 0;
- }
-
- // type 17
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels; q++)
- {
- const float* ptr = a.channel(q);
- const float b0 = b[q];
- float* outptr = c.channel(q);
-
- for (int i = 0; i < size; i++)
- {
- outptr[i] = op(ptr[i], b0);
- }
- }
-
- return 0;
- }
- }
- else if (a.dims == 2)
- {
- if (b.dims == 3)
- {
- // type 14
- c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels1; q++)
- {
- const float* ptr = a.row(q);
- const float* ptr1 = b.channel(q);
- float* outptr = c.channel(q);
-
- for (int y = 0; y < h1; y++)
- {
- const float a0 = ptr[y];
- for (int x = 0; x < w1; x++)
- {
- outptr[x] = op(a0, ptr1[x]);
- }
-
- ptr1 += w1;
- outptr += w1;
- }
- }
-
- return 0;
- }
-
- c.create(w, h, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- if (b.dims == 2)
- {
- // type 13
- for (int i = 0; i < size; i++)
- {
- c[i] = op(a[i], b[i]);
- }
-
- return 0;
- }
-
- if (b.dims == 1)
- {
- c.create(w, h, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- if (b.w == 1)
- {
- // type 11
- const float b0 = b[0];
- for (int i = 0; i < size; i++)
- {
- c[i] = op(a[i], b0);
- }
-
- return 0;
- }
-
- // type 12
- const float* ptr = a;
- float* outptr = c;
-
- for (int y = 0; y < h; y++)
- {
- const float b0 = b[y];
- for (int x = 0; x < w; x++)
- {
- outptr[x] = op(ptr[x], b0);
- }
-
- ptr += w;
- outptr += w;
- }
-
- return 0;
- }
- }
- else if (a.dims == 1)
- {
- if (a.w == 1)
- {
- if (b.dims == 3)
- {
- // type 4
- c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- const float a0 = a[0];
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels1; q++)
- {
- const float* ptr1 = b.channel(q);
- float* outptr = c.channel(q);
-
- for (int i = 0; i < size1; i++)
- {
- outptr[i] = op(a0, ptr1[i]);
- }
- }
-
- return 0;
- }
-
- if (b.dims == 2)
- {
- // type 3
- c.create(w1, h1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- const float a0 = a[0];
- for (int i = 0; i < size1; i++)
- {
- c[i] = op(a0, b[i]);
- }
-
- return 0;
- }
-
- if (b.dims == 1)
- {
- // type 2
- c.create(w1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- const float a0 = a[0];
- for (int i = 0; i < w1; i++)
- {
- c[i] = op(a0, b[i]);
- }
-
- return 0;
- }
- }
-
- if (b.dims == 3)
- {
- // type 9
- c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels1; q++)
- {
- const float a0 = a[q];
- const float* ptr1 = b.channel(q);
- float* outptr = c.channel(q);
-
- for (int i = 0; i < size1; i++)
- {
- outptr[i] = op(a0, ptr1[i]);
- }
- }
-
- return 0;
- }
-
- if (b.dims == 2)
- {
- // type 8
- c.create(w1, h1, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- const float* ptr1 = b;
- float* outptr = c;
-
- for (int y = 0; y < h1; y++)
- {
- const float a0 = a[y];
- for (int x = 0; x < w1; x++)
- {
- outptr[x] = op(a0, ptr1[x]);
- }
-
- ptr1 += w1;
- outptr += w1;
- }
-
- return 0;
- }
-
- if (b.dims == 1)
- {
- c.create(w, elemsize, opt.blob_allocator);
- if (c.empty())
- return -100;
-
- if (b.w == 1)
- {
- // type 6
- const float b0 = b[0];
- for (int i = 0; i < w; i++)
- {
- c[i] = op(a[i], b0);
- }
-
- return 0;
- }
-
- // type 7
- for (int i = 0; i < w; i++)
- {
- c[i] = op(a[i], b[i]);
- }
- }
- }
-
- return 0;
- }
-
- template<typename Op>
- static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
- {
- Op op;
-
- int w = a.w;
- int h = a.h;
- int channels = a.c;
- int size = w * h;
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q = 0; q < channels; q++)
- {
- float* ptr = a.channel(q);
-
- for (int i = 0; i < size; i++)
- {
- ptr[i] = op(ptr[i], b);
- }
- }
-
- return 0;
- }
-
- struct binary_op_add
- {
- float operator()(const float& x, const float& y) const
- {
- return x + y;
- }
- };
-
- struct binary_op_sub
- {
- float operator()(const float& x, const float& y) const
- {
- return x - y;
- }
- };
-
- struct binary_op_mul
- {
- float operator()(const float& x, const float& y) const
- {
- return x * y;
- }
- };
-
- struct binary_op_div
- {
- float operator()(const float& x, const float& y) const
- {
- return x / y;
- }
- };
-
- struct binary_op_max
- {
- float operator()(const float& x, const float& y) const
- {
- return std::max(x, y);
- }
- };
-
- struct binary_op_min
- {
- float operator()(const float& x, const float& y) const
- {
- return std::min(x, y);
- }
- };
-
- struct binary_op_pow
- {
- float operator()(const float& x, const float& y) const
- {
- return (float)pow(x, y);
- }
- };
-
- struct binary_op_rsub
- {
- float operator()(const float& x, const float& y) const
- {
- return y - x;
- }
- };
-
- struct binary_op_rdiv
- {
- float operator()(const float& x, const float& y) const
- {
- return y / x;
- }
- };
-
- int BinaryOp::forward(const std::vector<Mat>& bottom_blobs, std::vector<Mat>& top_blobs, const Option& opt) const
- {
- const Mat& bottom_blob = bottom_blobs[0];
- const Mat& bottom_blob1 = bottom_blobs[1];
-
- Mat& top_blob = top_blobs[0];
-
- if (op_type == Operation_ADD)
- return binary_op<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_SUB)
- return binary_op<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_MUL)
- return binary_op<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_DIV)
- return binary_op<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_MAX)
- return binary_op<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_MIN)
- return binary_op<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_POW)
- return binary_op<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_RSUB)
- return binary_op<binary_op_rsub>(bottom_blob, bottom_blob1, top_blob, opt);
-
- if (op_type == Operation_RDIV)
- return binary_op<binary_op_rdiv>(bottom_blob, bottom_blob1, top_blob, opt);
-
- return 0;
- }
-
- int BinaryOp::forward_inplace(Mat& bottom_top_blob, const Option& opt) const
- {
- if (op_type == Operation_ADD)
- return binary_op_scalar_inplace<binary_op_add>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_SUB)
- return binary_op_scalar_inplace<binary_op_sub>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_MUL)
- return binary_op_scalar_inplace<binary_op_mul>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_DIV)
- return binary_op_scalar_inplace<binary_op_div>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_MAX)
- return binary_op_scalar_inplace<binary_op_max>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_MIN)
- return binary_op_scalar_inplace<binary_op_min>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_POW)
- return binary_op_scalar_inplace<binary_op_pow>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_RSUB)
- return binary_op_scalar_inplace<binary_op_rsub>(bottom_top_blob, b, opt);
-
- if (op_type == Operation_RDIV)
- return binary_op_scalar_inplace<binary_op_rdiv>(bottom_top_blob, b, opt);
-
- return 0;
- }
-
- } // namespace ncnn
|