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

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