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_oom.cpp 2.4 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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_oom(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_oom("Quantize", pd, weights, a);
  35. if (ret != 0)
  36. {
  37. fprintf(stderr, "test_quantize_oom 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_oom(RandomMat(5, 7, 24), 100.f, 100.f)
  45. || test_quantize_oom(RandomMat(7, 9, 12), 100.f, 100.f)
  46. || test_quantize_oom(RandomMat(3, 5, 13), 100.f, 100.f);
  47. }
  48. static int test_quantize_1()
  49. {
  50. return 0
  51. || test_quantize_oom(RandomMat(15, 24), 100.f, 100.f)
  52. || test_quantize_oom(RandomMat(17, 12), 100.f, 100.f)
  53. || test_quantize_oom(RandomMat(19, 15), 100.f, 100.f);
  54. }
  55. static int test_quantize_2()
  56. {
  57. return 0
  58. || test_quantize_oom(RandomMat(128), 120.f, 140.f)
  59. || test_quantize_oom(RandomMat(124), 120.f, 140.f)
  60. || test_quantize_oom(RandomMat(127), 120.f, 140.f);
  61. }
  62. int main()
  63. {
  64. SRAND(7767517);
  65. return 0
  66. || test_quantize_0()
  67. || test_quantize_1()
  68. || test_quantize_2();
  69. }