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

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