// 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 "layer/scale.h" #include "testutil.h" static int test_scale(const ncnn::Mat& a, int bias) { int scale_data_size; if (a.dims == 1) scale_data_size = a.w; if (a.dims == 2) scale_data_size = a.h; if (a.dims == 3) scale_data_size = a.c; ncnn::ParamDict pd; pd.set(0, scale_data_size); pd.set(1, bias); std::vector weights(bias ? 2 : 1); weights[0] = RandomMat(scale_data_size); if (bias) weights[1] = RandomMat(scale_data_size); int ret = test_layer("Scale", pd, weights, a); if (ret != 0) { fprintf(stderr, "test_scale failed a.dims=%d a=(%d %d %d) bias=%d\n", a.dims, a.w, a.h, a.c, bias); } return ret; } static int test_scale_attention(const ncnn::Mat& a) { int scale_data_size; if (a.dims == 1) scale_data_size = a.w; if (a.dims == 2) scale_data_size = a.h; if (a.dims == 3) scale_data_size = a.c; ncnn::ParamDict pd; pd.set(0, -233); std::vector weights(0); std::vector ab(2); ab[0] = a; ab[1] = RandomMat(scale_data_size); int ret = test_layer("Scale", pd, weights, ab, 2); if (ret != 0) { fprintf(stderr, "test_scale_attention failed a.dims=%d a=(%d %d %d)\n", a.dims, a.w, a.h, a.c); } return ret; } static int test_scale_0() { return 0 || test_scale(RandomMat(5, 7, 24), 0) || test_scale(RandomMat(5, 7, 24), 1) || test_scale(RandomMat(7, 9, 12), 0) || test_scale(RandomMat(7, 9, 12), 1) || test_scale(RandomMat(3, 5, 13), 0) || test_scale(RandomMat(3, 5, 13), 1); } static int test_scale_1() { return 0 || test_scale(RandomMat(15, 24), 0) || test_scale(RandomMat(15, 24), 1) || test_scale(RandomMat(17, 12), 0) || test_scale(RandomMat(17, 12), 1) || test_scale(RandomMat(19, 15), 0) || test_scale(RandomMat(19, 15), 1); } static int test_scale_2() { return 0 || test_scale(RandomMat(128), 0) || test_scale(RandomMat(128), 1) || test_scale(RandomMat(124), 0) || test_scale(RandomMat(124), 1) || test_scale(RandomMat(127), 0) || test_scale(RandomMat(127), 1); } static int test_scale_3() { return 0 || test_scale_attention(RandomMat(5, 7, 24)) || test_scale_attention(RandomMat(7, 9, 12)) || test_scale_attention(RandomMat(3, 5, 13)); } static int test_scale_4() { return 0 || test_scale_attention(RandomMat(15, 24)) || test_scale_attention(RandomMat(17, 12)) || test_scale_attention(RandomMat(19, 15)); } static int test_scale_5() { return 0 || test_scale_attention(RandomMat(128)) || test_scale_attention(RandomMat(124)) || test_scale_attention(RandomMat(127)); } int main() { SRAND(7767517); return 0 || test_scale_0() || test_scale_1() || test_scale_2() || test_scale_3() || test_scale_4() || test_scale_5(); }