You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_glu.cpp 1.9 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // Copyright (c) 2022 Xiaomi Corp. (author: Fangjun Kuang)
  2. //
  3. // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  4. // in compliance with the License. You may obtain a copy of the License at
  5. //
  6. // https://opensource.org/licenses/BSD-3-Clause
  7. //
  8. // Unless required by applicable law or agreed to in writing, software distributed
  9. // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  10. // CONDITIONS OF ANY KIND, either express or implied. See the License for the
  11. // specific language governing permissions and limitations under the License.
  12. #include "layer/glu.h"
  13. #include "testutil.h"
  14. static int test_glu(const ncnn::Mat& a, int axis)
  15. {
  16. ncnn::ParamDict pd;
  17. pd.set(0, axis);
  18. std::vector<ncnn::Mat> weights(0);
  19. int ret = test_layer<ncnn::GLU>("GLU", pd, weights, a);
  20. if (ret != 0)
  21. {
  22. fprintf(stderr, "test_glu failed a.dims=%d a=(%d %d %d) axis=%d\n", a.dims, a.w, a.h, a.c, axis);
  23. }
  24. return ret;
  25. }
  26. static int test_glu_0()
  27. {
  28. return 0
  29. || test_glu(RandomMat(6, 7, 24), 0)
  30. || test_glu(RandomMat(6, 8, 24), 1)
  31. || test_glu(RandomMat(6, 8, 24), 2)
  32. || test_glu(RandomMat(36, 7, 22), 0)
  33. || test_glu(RandomMat(5, 256, 23), -2)
  34. || test_glu(RandomMat(129, 9, 60), 2)
  35. || test_glu(RandomMat(129, 9, 30), -1);
  36. }
  37. static int test_glu_1()
  38. {
  39. return 0
  40. || test_glu(RandomMat(10, 24), 0)
  41. || test_glu(RandomMat(7, 24), 1)
  42. || test_glu(RandomMat(128, 22), 0)
  43. || test_glu(RandomMat(128, 256), 1);
  44. }
  45. static int test_glu_2()
  46. {
  47. return 0
  48. || test_glu(RandomMat(10), 0)
  49. || test_glu(RandomMat(20), 0)
  50. || test_glu(RandomMat(128), 0);
  51. }
  52. int main()
  53. {
  54. SRAND(7767517);
  55. return 0
  56. || test_glu_0()
  57. || test_glu_1()
  58. || test_glu_2();
  59. }