HomeSort by relevance Sort by last modified time
    Searched refs:fft_length_ (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
spectrogram.cc 62 fft_length_ = NextPowerOfTwo(window_length_);
63 CHECK(fft_length_ >= window_length_);
64 output_frequency_channels_ = 1 + fft_length_ / 2;
67 fft_input_output_.assign(fft_length_ + 2, 0.0);
69 int half_fft_length = fft_length_ / 2;
198 for (int j = window_length_; j < fft_length_; ++j) {
203 rdft(fft_length_, kForwardFFT, &fft_input_output_[0],
207 fft_input_output_[fft_length_] = fft_input_output_[1];
208 fft_input_output_[fft_length_ + 1] = 0;
spectrogram.h 92 int fft_length_; member in class:tensorflow::Spectrogram
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
fft_thunk.h 82 const std::vector<int64> fft_length_; member in class:xla::gpu::FftThunk
fft_thunk.cc 119 fft_length_(fft_length.begin(), fft_length.end()),
137 const int64 fft_rank = fft_length_.size();
153 fft_length[i] = static_cast<uint64>(fft_length_[i]);
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_instruction.h 1398 std::vector<int64> fft_length_; member in class:xla::HloInstruction
    [all...]
hlo_instruction.cc 150 instruction->fft_length_.push_back(fft_len);
347 instruction->fft_length_.assign(fft_length.begin(), fft_length.end());
    [all...]

Completed in 141 milliseconds