40deaf3d482a079d4c6225b0911ae955b54919c4,scattering/scattering1d/backend/backend_skcuda.py,,ifft1d_c2c,#Any#,348

Before Change


        A tensor of the same size of x_f containing the unnormalized inverse
        Fourier transform of x_f.
    
    return torch.ifft(x, signal_ndim = 1) * float(x.shape[-2])


def ifft1d_c2c_normed(x):
    Compute the normalized 1D inverse FFT of a complex signal

After Change


        A tensor of the same size of x_f containing the normalized inverse
        Fourier transform of x_f.
    
    return torch.ifft(x, signal_ndim=1)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: kymatio/kymatio
Commit Name: 40deaf3d482a079d4c6225b0911ae955b54919c4
Time: 2018-11-21
Author: janden@flatironinstitute.org
File Name: scattering/scattering1d/backend/backend_skcuda.py
Class Name:
Method Name: ifft1d_c2c


Project Name: kymatio/kymatio
Commit Name: 40deaf3d482a079d4c6225b0911ae955b54919c4
Time: 2018-11-21
Author: janden@flatironinstitute.org
File Name: scattering/scattering1d/backend/backend_torch.py
Class Name:
Method Name: ifft1d_c2c


Project Name: kymatio/kymatio
Commit Name: 35ff6982fcb3fecb25a574bd6706dc26b20fac03
Time: 2020-02-18
Author: edouard.oyallon@lip6.fr
File Name: kymatio/scattering2d/backend/torch_backend.py
Class Name:
Method Name: fft