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 2.9 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 "testutil.h"
  15. static int test_quantize(const ncnn::Mat& a, float scale_low, float scale_high)
  16. {
  17. ncnn::Mat scale_data;
  18. if (scale_low == scale_high)
  19. {
  20. scale_data.create(1);
  21. scale_data[0] = scale_low;
  22. }
  23. else
  24. {
  25. if (a.dims == 1) scale_data.create(a.w);
  26. if (a.dims == 2) scale_data.create(a.h);
  27. if (a.dims == 3) scale_data.create(a.c);
  28. Randomize(scale_data, scale_low, scale_high);
  29. }
  30. ncnn::ParamDict pd;
  31. pd.set(0, scale_data.w);
  32. std::vector<ncnn::Mat> weights(1);
  33. weights[0] = scale_data;
  34. int ret = test_layer("Quantize", pd, weights, a);
  35. if (ret != 0)
  36. {
  37. 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);
  38. }
  39. return ret;
  40. }
  41. static int test_quantize_0()
  42. {
  43. return 0
  44. || test_quantize(RandomMat(5, 7, 24), 100.f, 100.f)
  45. || test_quantize(RandomMat(5, 7, 24), 120.f, 140.f)
  46. || test_quantize(RandomMat(7, 9, 12), 100.f, 100.f)
  47. || test_quantize(RandomMat(7, 9, 12), 120.f, 140.f)
  48. || test_quantize(RandomMat(3, 5, 13), 100.f, 100.f)
  49. || test_quantize(RandomMat(3, 5, 13), 120.f, 140.f);
  50. }
  51. static int test_quantize_1()
  52. {
  53. return 0
  54. || test_quantize(RandomMat(15, 24), 100.f, 100.f)
  55. || test_quantize(RandomMat(15, 24), 120.f, 140.f)
  56. || test_quantize(RandomMat(17, 12), 100.f, 100.f)
  57. || test_quantize(RandomMat(17, 12), 120.f, 140.f)
  58. || test_quantize(RandomMat(19, 15), 100.f, 100.f)
  59. || test_quantize(RandomMat(19, 15), 120.f, 140.f);
  60. }
  61. static int test_quantize_2()
  62. {
  63. return 0
  64. || test_quantize(RandomMat(128), 100.f, 100.f)
  65. || test_quantize(RandomMat(128), 120.f, 140.f)
  66. || test_quantize(RandomMat(124), 100.f, 100.f)
  67. || test_quantize(RandomMat(124), 120.f, 140.f)
  68. || test_quantize(RandomMat(127), 100.f, 100.f)
  69. || test_quantize(RandomMat(127), 120.f, 140.f);
  70. }
  71. int main()
  72. {
  73. SRAND(7767517);
  74. return 0
  75. || test_quantize_0()
  76. || test_quantize_1()
  77. || test_quantize_2();
  78. }