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_spectrogram.cpp 1.4 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Copyright 2024 Tencent
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. #include "testutil.h"
  4. static int test_spectrogram(int size, int n_fft, int power, int hoplen, int winlen, int window_type, int center, int pad_type, int normalized, int onesided)
  5. {
  6. ncnn::Mat a = RandomMat(size);
  7. ncnn::ParamDict pd;
  8. pd.set(0, n_fft);
  9. pd.set(1, power);
  10. pd.set(2, hoplen);
  11. pd.set(3, winlen);
  12. pd.set(4, window_type);
  13. pd.set(5, center);
  14. pd.set(6, pad_type);
  15. pd.set(7, normalized);
  16. pd.set(8, onesided);
  17. std::vector<ncnn::Mat> weights(0);
  18. int ret = test_layer("Spectrogram", pd, weights, a);
  19. if (ret != 0)
  20. {
  21. fprintf(stderr, "test_spectrogram failed size=%d n_fft=%d power=%d hoplen=%d winlen=%d window_type=%d center=%d pad_type=%d normalized=%d onesided=%d\n", size, n_fft, power, hoplen, winlen, window_type, center, pad_type, normalized, onesided);
  22. }
  23. return ret;
  24. }
  25. static int test_spectrogram_0()
  26. {
  27. return 0
  28. || test_spectrogram(17, 1, 0, 1, 1, 0, 1, 0, 0, 0)
  29. || test_spectrogram(39, 17, 0, 7, 15, 0, 0, 0, 1, 0)
  30. || test_spectrogram(128, 10, 0, 2, 7, 1, 1, 1, 1, 1)
  31. || test_spectrogram(255, 17, 1, 14, 17, 2, 0, 0, 0, 1)
  32. || test_spectrogram(124, 55, 2, 12, 55, 1, 1, 2, 2, 0);
  33. }
  34. int main()
  35. {
  36. SRAND(7767517);
  37. return test_spectrogram_0();
  38. }