|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480 |
- // Tencent is pleased to support the open source community by making ncnn available.
- //
- // Copyright (C) 2020 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 "testutil.h"
-
- #include "layer/binaryop.h"
-
- #define OP_TYPE_MAX 9
-
- static int test_binaryop(const ncnn::Mat& _a, const ncnn::Mat& _b, int op_type)
- {
- ncnn::Mat a = _a;
- ncnn::Mat b = _b;
- if (op_type == 6)
- {
- // value must be positive for pow
- Randomize(a, 0.001f, 2.f);
- Randomize(b, 0.001f, 2.f);
- }
-
- ncnn::ParamDict pd;
- pd.set(0, op_type);
- pd.set(1, 0);// with_scalar
- pd.set(2, 0.f);// b
-
- std::vector<ncnn::Mat> weights(0);
-
- ncnn::Option opt;
- opt.num_threads = 1;
- opt.use_vulkan_compute = true;
- opt.use_fp16_packed = false;
- opt.use_fp16_storage = false;
- opt.use_fp16_arithmetic = false;
- opt.use_int8_storage = false;
- opt.use_int8_arithmetic = false;
-
- std::vector<ncnn::Mat> ab(2);
- ab[0] = a;
- ab[1] = b;
-
- int ret = test_layer<ncnn::BinaryOp>("BinaryOp", pd, weights, opt, ab);
- if (ret != 0)
- {
- fprintf(stderr, "test_binaryop failed a.dims=%d a=(%d %d %d) b.dims=%d b=(%d %d %d) op_type=%d\n", a.dims, a.w, a.h, a.c, b.dims, b.w, b.h, b.c, op_type);
- }
-
- return ret;
- }
-
- static int test_binaryop(const ncnn::Mat& _a, float b, int op_type)
- {
- ncnn::Mat a = _a;
- if (op_type == 6)
- {
- // value must be positive for pow
- Randomize(a, 0.001f, 2.f);
- b = RandomFloat(0.001f, 2.f);
- }
-
- ncnn::ParamDict pd;
- pd.set(0, op_type);
- pd.set(1, 1);// with_scalar
- pd.set(2, b);// b
-
- std::vector<ncnn::Mat> weights(0);
-
- ncnn::Option opt;
- opt.num_threads = 1;
- opt.use_vulkan_compute = true;
- opt.use_fp16_packed = false;
- opt.use_fp16_storage = false;
- opt.use_fp16_arithmetic = false;
- opt.use_int8_storage = false;
- opt.use_int8_arithmetic = false;
-
- int ret = test_layer<ncnn::BinaryOp>("BinaryOp", pd, weights, opt, a);
- if (ret != 0)
- {
- fprintf(stderr, "test_binaryop failed a.dims=%d a=(%d %d %d) b=%f op_type=%d\n", a.dims, a.w, a.h, a.c, b, op_type);
- }
-
- return ret;
- }
-
- // https://github.com/Tencent/ncnn/wiki/binaryop-broadcasting
-
- static int test_binaryop_1()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(1), 1.f, op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_2()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(1), RandomMat(1), op_type)
- || test_binaryop(RandomMat(1), RandomMat(4), op_type)
- || test_binaryop(RandomMat(1), RandomMat(8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_3()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(1), RandomMat(2, 3), op_type)
- || test_binaryop(RandomMat(1), RandomMat(2, 4), op_type)
- || test_binaryop(RandomMat(1), RandomMat(2, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_4()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(1), RandomMat(2, 3, 2), op_type)
- || test_binaryop(RandomMat(1), RandomMat(2, 3, 4), op_type)
- || test_binaryop(RandomMat(1), RandomMat(2, 3, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_5()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2), 1.f, op_type)
- || test_binaryop(RandomMat(4), 1.f, op_type)
- || test_binaryop(RandomMat(8), 1.f, op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_6()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2), RandomMat(1), op_type)
- || test_binaryop(RandomMat(4), RandomMat(1), op_type)
- || test_binaryop(RandomMat(8), RandomMat(1), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_7()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2), RandomMat(2), op_type)
- || test_binaryop(RandomMat(4), RandomMat(4), op_type)
- || test_binaryop(RandomMat(8), RandomMat(8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_8()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(3), RandomMat(2, 3), op_type)
- || test_binaryop(RandomMat(4), RandomMat(2, 4), op_type)
- || test_binaryop(RandomMat(8), RandomMat(2, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_9()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2), RandomMat(2, 3, 2), op_type)
- || test_binaryop(RandomMat(4), RandomMat(2, 3, 4), op_type)
- || test_binaryop(RandomMat(8), RandomMat(2, 3, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_10()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3), 1.f, op_type)
- || test_binaryop(RandomMat(2, 4), 1.f, op_type)
- || test_binaryop(RandomMat(2, 8), 1.f, op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_11()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3), RandomMat(1), op_type)
- || test_binaryop(RandomMat(2, 4), RandomMat(1), op_type)
- || test_binaryop(RandomMat(2, 8), RandomMat(1), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_12()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3), RandomMat(3), op_type)
- || test_binaryop(RandomMat(2, 4), RandomMat(4), op_type)
- || test_binaryop(RandomMat(2, 8), RandomMat(8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_13()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3), RandomMat(2, 3), op_type)
- || test_binaryop(RandomMat(2, 4), RandomMat(2, 4), op_type)
- || test_binaryop(RandomMat(2, 8), RandomMat(2, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_14()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(3, 2), RandomMat(2, 3, 2), op_type)
- || test_binaryop(RandomMat(3, 4), RandomMat(2, 3, 4), op_type)
- || test_binaryop(RandomMat(3, 8), RandomMat(2, 3, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_15()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3, 2), 1.f, op_type)
- || test_binaryop(RandomMat(2, 3, 4), 1.f, op_type)
- || test_binaryop(RandomMat(2, 3, 8), 1.f, op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_16()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3, 2), RandomMat(1), op_type)
- || test_binaryop(RandomMat(2, 3, 4), RandomMat(1), op_type)
- || test_binaryop(RandomMat(2, 3, 8), RandomMat(1), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_17()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3, 2), RandomMat(2), op_type)
- || test_binaryop(RandomMat(2, 3, 4), RandomMat(4), op_type)
- || test_binaryop(RandomMat(2, 3, 8), RandomMat(8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_18()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3, 2), RandomMat(3, 2), op_type)
- || test_binaryop(RandomMat(2, 3, 4), RandomMat(3, 4), op_type)
- || test_binaryop(RandomMat(2, 3, 8), RandomMat(3, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_19()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3, 2), RandomMat(2, 3, 2), op_type)
- || test_binaryop(RandomMat(2, 3, 4), RandomMat(2, 3, 4), op_type)
- || test_binaryop(RandomMat(2, 3, 8), RandomMat(2, 3, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_s1()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3, 2), RandomMat(1, 1, 2), op_type)
- || test_binaryop(RandomMat(2, 3, 4), RandomMat(1, 1, 4), op_type)
- || test_binaryop(RandomMat(2, 3, 8), RandomMat(1, 1, 8), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- static int test_binaryop_s2()
- {
- for (int op_type=0; op_type<OP_TYPE_MAX; op_type++)
- {
- int ret = 0
- || test_binaryop(RandomMat(2, 3, 2), RandomMat(2, 3, 1), op_type)
- || test_binaryop(RandomMat(2, 3, 4), RandomMat(2, 3, 1), op_type)
- || test_binaryop(RandomMat(2, 3, 8), RandomMat(2, 3, 1), op_type)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- int main()
- {
- SRAND(7767517);
-
- return 0
- || test_binaryop_1()
- || test_binaryop_2()
- || test_binaryop_3()
- || test_binaryop_4()
- || test_binaryop_5()
- || test_binaryop_6()
- || test_binaryop_7()
- || test_binaryop_8()
- || test_binaryop_9()
- || test_binaryop_10()
- || test_binaryop_11()
- || test_binaryop_12()
- || test_binaryop_13()
- || test_binaryop_14()
- || test_binaryop_15()
- || test_binaryop_16()
- || test_binaryop_17()
- || test_binaryop_18()
- || test_binaryop_19()
- || test_binaryop_s1()
- || test_binaryop_s2()
- ;
- }
|