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_quantize.cpp 3.0 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. // Tencent is pleased to support the open source community by making ncnn available.
  2. //
  3. // Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
  4. //
  5. // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  6. // in compliance with the License. You may obtain a copy of the License at
  7. //
  8. // https://opensource.org/licenses/BSD-3-Clause
  9. //
  10. // Unless required by applicable law or agreed to in writing, software distributed
  11. // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  12. // CONDITIONS OF ANY KIND, either express or implied. See the License for the
  13. // specific language governing permissions and limitations under the License.
  14. #include "layer/quantize.h"
  15. #include "testutil.h"
  16. static int test_quantize(const ncnn::Mat& a, float scale_low, float scale_high)
  17. {
  18. ncnn::Mat scale_data;
  19. if (scale_low == scale_high)
  20. {
  21. scale_data.create(1);
  22. scale_data[0] = scale_low;
  23. }
  24. else
  25. {
  26. if (a.dims == 1) scale_data.create(a.w);
  27. if (a.dims == 2) scale_data.create(a.h);
  28. if (a.dims == 3) scale_data.create(a.c);
  29. Randomize(scale_data, scale_low, scale_high);
  30. }
  31. ncnn::ParamDict pd;
  32. pd.set(0, scale_data.w);
  33. std::vector<ncnn::Mat> weights(1);
  34. weights[0] = scale_data;
  35. int ret = test_layer<ncnn::Quantize>("Quantize", pd, weights, a);
  36. if (ret != 0)
  37. {
  38. fprintf(stderr, "test_quantize failed a.dims=%d a=(%d %d %d) scale_low=%f scale_high=%f\n", a.dims, a.w, a.h, a.c, scale_low, scale_high);
  39. }
  40. return ret;
  41. }
  42. static int test_quantize_0()
  43. {
  44. return 0
  45. || test_quantize(RandomMat(5, 7, 24), 100.f, 100.f)
  46. || test_quantize(RandomMat(5, 7, 24), 120.f, 140.f)
  47. || test_quantize(RandomMat(7, 9, 12), 100.f, 100.f)
  48. || test_quantize(RandomMat(7, 9, 12), 120.f, 140.f)
  49. || test_quantize(RandomMat(3, 5, 13), 100.f, 100.f)
  50. || test_quantize(RandomMat(3, 5, 13), 120.f, 140.f);
  51. }
  52. static int test_quantize_1()
  53. {
  54. return 0
  55. || test_quantize(RandomMat(15, 24), 100.f, 100.f)
  56. || test_quantize(RandomMat(15, 24), 120.f, 140.f)
  57. || test_quantize(RandomMat(17, 12), 100.f, 100.f)
  58. || test_quantize(RandomMat(17, 12), 120.f, 140.f)
  59. || test_quantize(RandomMat(19, 15), 100.f, 100.f)
  60. || test_quantize(RandomMat(19, 15), 120.f, 140.f);
  61. }
  62. static int test_quantize_2()
  63. {
  64. return 0
  65. || test_quantize(RandomMat(128), 100.f, 100.f)
  66. || test_quantize(RandomMat(128), 120.f, 140.f)
  67. || test_quantize(RandomMat(124), 100.f, 100.f)
  68. || test_quantize(RandomMat(124), 120.f, 140.f)
  69. || test_quantize(RandomMat(127), 100.f, 100.f)
  70. || test_quantize(RandomMat(127), 120.f, 140.f);
  71. }
  72. int main()
  73. {
  74. SRAND(7767517);
  75. return 0
  76. || test_quantize_0()
  77. || test_quantize_1()
  78. || test_quantize_2();
  79. }