MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / real_fft_inverse

Function real_fft_inverse

src/framework/audio/fft.cpp:104–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104void real_fft_inverse(
105 const TensorShape & output_shape,
106 const TensorStrideBytes & input_strides,
107 const TensorStrideBytes & output_strides,
108 size_t axis,
109 const std::complex<float> * data_in,
110 float * data_out,
111 float scale,
112 size_t threads) {
113 internal_fft::c2r(
114 output_shape,
115 input_strides,
116 output_strides,
117 axis,
118 internal_fft::BACKWARD,
119 data_in,
120 data_out,
121 scale,
122 threads);
123}
124
125} // namespace engine::audio

Callers 6

inverseMethod · 0.85
computeMethod · 0.85
compute_roformer_istftFunction · 0.85
istft_same_from_headFunction · 0.85

Calls 1

c2rFunction · 0.85

Tested by

no test coverage detected