Searched refs:fft_length_ (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/ |
D | spectrogram.cc | 62 fft_length_ = NextPowerOfTwo(window_length_); in Initialize() 63 CHECK(fft_length_ >= window_length_); in Initialize() 64 output_frequency_channels_ = 1 + fft_length_ / 2; in Initialize() 67 fft_input_output_.assign(fft_length_ + 2, 0.0); in Initialize() 69 int half_fft_length = fft_length_ / 2; in Initialize() 198 for (int j = window_length_; j < fft_length_; ++j) { in ProcessCoreFFT() 203 rdft(fft_length_, kForwardFFT, &fft_input_output_[0], in ProcessCoreFFT() 207 fft_input_output_[fft_length_] = fft_input_output_[1]; in ProcessCoreFFT() 208 fft_input_output_[fft_length_ + 1] = 0; in ProcessCoreFFT()
|
D | spectrogram.h | 92 int fft_length_; variable
|
/external/tensorflow/tensorflow/lite/kernels/internal/ |
D | spectrogram.cc | 92 fft_length_ = NextPowerOfTwo(window_length_); in Initialize() 94 output_frequency_channels_ = 1 + fft_length_ / 2; in Initialize() 97 fft_input_output_.assign(fft_length_ + 2, 0.0); in Initialize() 99 int half_fft_length = fft_length_ / 2; in Initialize() 229 for (int j = window_length_; j < fft_length_; ++j) { in ProcessCoreFFT() 234 rdft(fft_length_, kForwardFFT, &fft_input_output_[0], in ProcessCoreFFT() 238 fft_input_output_[fft_length_] = fft_input_output_[1]; in ProcessCoreFFT() 239 fft_input_output_[fft_length_ + 1] = 0; in ProcessCoreFFT()
|
D | spectrogram.h | 91 int fft_length_; variable
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | fft_thunk.cc | 102 fft_length_(fft_length.begin(), fft_length.end()), in FftThunk() 122 const int64 fft_rank = fft_length_.size(); in ExecuteOnStream() 138 fft_length[i] = static_cast<uint64>(fft_length_[i]); in ExecuteOnStream()
|
D | fft_thunk.h | 81 const std::vector<int64> fft_length_; variable
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_instructions.h | 109 const std::vector<int64>& fft_length() const { return fft_length_; } in fft_length() 131 std::vector<int64> fft_length_; variable
|
D | hlo_instructions.cc | 169 fft_length_.assign(fft_length.begin(), fft_length.end()); in HloFftInstruction() 176 for (int64 fft_len : fft_length_) { in ToProto() 202 fft_length_); in CloneWithNewOperandsImpl()
|