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_dequantize.cpp 6.9 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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_dequantize(const ncnn::Mat& a, int scale_data_size, int bias_data_size)
  16. {
  17. ncnn::ParamDict pd;
  18. pd.set(0, scale_data_size);
  19. pd.set(1, bias_data_size);
  20. std::vector<ncnn::Mat> weights(bias_data_size ? 2 : 1);
  21. weights[0] = RandomMat(scale_data_size);
  22. if (bias_data_size)
  23. weights[1] = RandomMat(bias_data_size);
  24. int flag = TEST_LAYER_DISABLE_AUTO_INPUT_CASTING;
  25. int ret = test_layer("Dequantize", pd, weights, a, 0.001, 0, flag);
  26. if (ret != 0)
  27. {
  28. fprintf(stderr, "test_dequantize failed a.dims=%d a=(%d %d %d) scale_data_size=%d bias_data_size=%d\n", a.dims, a.w, a.h, a.c, scale_data_size, bias_data_size);
  29. }
  30. return ret;
  31. }
  32. static int test_dequantize_pack8(const ncnn::Mat& a, int scale_data_size, int bias_data_size)
  33. {
  34. ncnn::ParamDict pd;
  35. pd.set(0, scale_data_size);
  36. pd.set(1, bias_data_size);
  37. std::vector<ncnn::Mat> weights(bias_data_size ? 2 : 1);
  38. weights[0] = RandomMat(scale_data_size);
  39. if (bias_data_size)
  40. weights[1] = RandomMat(bias_data_size);
  41. int flag = TEST_LAYER_DISABLE_AUTO_INPUT_CASTING | TEST_LAYER_ENABLE_FORCE_INPUT_PACK8;
  42. int ret = test_layer("Dequantize", pd, weights, a, 0.001, 0, flag);
  43. if (ret != 0)
  44. {
  45. fprintf(stderr, "test_dequantize_pack8 failed a.dims=%d a=(%d %d %d) scale_data_size=%d bias_data_size=%d\n", a.dims, a.w, a.h, a.c, scale_data_size, bias_data_size);
  46. }
  47. return ret;
  48. }
  49. static int test_dequantize_0()
  50. {
  51. return 0
  52. || test_dequantize(RandomIntMat(5, 7, 24), 1, 24)
  53. || test_dequantize(RandomIntMat(5, 7, 24), 1, 1)
  54. || test_dequantize(RandomIntMat(5, 7, 24), 1, 0)
  55. || test_dequantize(RandomIntMat(5, 7, 24), 24, 24)
  56. || test_dequantize(RandomIntMat(5, 7, 24), 24, 1)
  57. || test_dequantize(RandomIntMat(5, 7, 24), 24, 0)
  58. || test_dequantize(RandomIntMat(7, 9, 12), 1, 12)
  59. || test_dequantize(RandomIntMat(7, 9, 12), 1, 1)
  60. || test_dequantize(RandomIntMat(7, 9, 12), 1, 0)
  61. || test_dequantize(RandomIntMat(7, 9, 12), 12, 12)
  62. || test_dequantize(RandomIntMat(7, 9, 12), 12, 1)
  63. || test_dequantize(RandomIntMat(7, 9, 12), 12, 0)
  64. || test_dequantize(RandomIntMat(3, 5, 13), 1, 13)
  65. || test_dequantize(RandomIntMat(3, 5, 13), 1, 1)
  66. || test_dequantize(RandomIntMat(3, 5, 13), 1, 0)
  67. || test_dequantize(RandomIntMat(3, 5, 13), 13, 13)
  68. || test_dequantize(RandomIntMat(3, 5, 13), 13, 1)
  69. || test_dequantize(RandomIntMat(3, 5, 13), 13, 0);
  70. }
  71. static int test_dequantize_1()
  72. {
  73. return 0
  74. || test_dequantize(RandomIntMat(15, 24), 1, 24)
  75. || test_dequantize(RandomIntMat(15, 24), 1, 1)
  76. || test_dequantize(RandomIntMat(15, 24), 1, 0)
  77. || test_dequantize(RandomIntMat(15, 24), 24, 24)
  78. || test_dequantize(RandomIntMat(15, 24), 24, 1)
  79. || test_dequantize(RandomIntMat(15, 24), 24, 0)
  80. || test_dequantize(RandomIntMat(17, 12), 1, 12)
  81. || test_dequantize(RandomIntMat(17, 12), 1, 1)
  82. || test_dequantize(RandomIntMat(17, 12), 1, 0)
  83. || test_dequantize(RandomIntMat(17, 12), 12, 12)
  84. || test_dequantize(RandomIntMat(17, 12), 12, 1)
  85. || test_dequantize(RandomIntMat(17, 12), 12, 0)
  86. || test_dequantize(RandomIntMat(19, 15), 1, 15)
  87. || test_dequantize(RandomIntMat(19, 15), 1, 1)
  88. || test_dequantize(RandomIntMat(19, 15), 1, 0)
  89. || test_dequantize(RandomIntMat(19, 15), 15, 15)
  90. || test_dequantize(RandomIntMat(19, 15), 15, 1)
  91. || test_dequantize(RandomIntMat(19, 15), 15, 0);
  92. }
  93. static int test_dequantize_2()
  94. {
  95. return 0
  96. || test_dequantize(RandomIntMat(128), 1, 128)
  97. || test_dequantize(RandomIntMat(128), 1, 1)
  98. || test_dequantize(RandomIntMat(128), 1, 0)
  99. || test_dequantize(RandomIntMat(128), 128, 128)
  100. || test_dequantize(RandomIntMat(128), 128, 1)
  101. || test_dequantize(RandomIntMat(128), 128, 0)
  102. || test_dequantize(RandomIntMat(124), 1, 124)
  103. || test_dequantize(RandomIntMat(124), 1, 1)
  104. || test_dequantize(RandomIntMat(124), 1, 0)
  105. || test_dequantize(RandomIntMat(124), 124, 124)
  106. || test_dequantize(RandomIntMat(124), 124, 1)
  107. || test_dequantize(RandomIntMat(124), 124, 0)
  108. || test_dequantize(RandomIntMat(127), 1, 127)
  109. || test_dequantize(RandomIntMat(127), 1, 1)
  110. || test_dequantize(RandomIntMat(127), 1, 0)
  111. || test_dequantize(RandomIntMat(127), 127, 127)
  112. || test_dequantize(RandomIntMat(127), 127, 1)
  113. || test_dequantize(RandomIntMat(127), 127, 0);
  114. }
  115. static int test_dequantize_3()
  116. {
  117. return 0
  118. || test_dequantize_pack8(RandomIntMat(5, 7, 24), 1, 24)
  119. || test_dequantize_pack8(RandomIntMat(5, 7, 24), 1, 1)
  120. || test_dequantize_pack8(RandomIntMat(5, 7, 24), 1, 0)
  121. || test_dequantize_pack8(RandomIntMat(5, 7, 24), 24, 24)
  122. || test_dequantize_pack8(RandomIntMat(5, 7, 24), 24, 1)
  123. || test_dequantize_pack8(RandomIntMat(5, 7, 24), 24, 0)
  124. || test_dequantize_pack8(RandomIntMat(15, 24), 1, 24)
  125. || test_dequantize_pack8(RandomIntMat(15, 24), 1, 1)
  126. || test_dequantize_pack8(RandomIntMat(15, 24), 1, 0)
  127. || test_dequantize_pack8(RandomIntMat(15, 24), 24, 24)
  128. || test_dequantize_pack8(RandomIntMat(15, 24), 24, 1)
  129. || test_dequantize_pack8(RandomIntMat(15, 24), 24, 0)
  130. || test_dequantize_pack8(RandomIntMat(128), 1, 128)
  131. || test_dequantize_pack8(RandomIntMat(128), 1, 1)
  132. || test_dequantize_pack8(RandomIntMat(128), 1, 0)
  133. || test_dequantize_pack8(RandomIntMat(128), 128, 128)
  134. || test_dequantize_pack8(RandomIntMat(128), 128, 1)
  135. || test_dequantize_pack8(RandomIntMat(128), 128, 0);
  136. }
  137. int main()
  138. {
  139. SRAND(7767517);
  140. return 0
  141. || test_dequantize_0()
  142. || test_dequantize_1()
  143. || test_dequantize_2()
  144. || test_dequantize_3();
  145. }