Mengran Gou

Results 1 issues of Mengran Gou

Hi, I'm trying to do some linear operations with two ffts. ```python class fft_autotest(torch.nn.Module): def __init__(self): super(fft_autotest, self).__init__() def forward(self, x1, x2): f = fft.Fft() x1_fre,x1_fim = f(x1,torch.zeros_like(x1)) x2_fre,x2_fim =...