aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_IFFT2D.pbtxt
blob: 7f38f14308de70fb0ebc229064d010762055c458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
op {
  graph_op_name: "IFFT2D"
  in_arg {
    name: "input"
    description: <<END
A complex64 tensor.
END
  }
  out_arg {
    name: "output"
    description: <<END
A complex64 tensor of the same shape as `input`. The inner-most 2
  dimensions of `input` are replaced with their inverse 2D Fourier transform.

@compatibility(numpy)
Equivalent to np.fft.ifft2
@end_compatibility
END
  }
  summary: "Inverse 2D fast Fourier transform."
  description: <<END
Computes the inverse 2-dimensional discrete Fourier transform over the
inner-most 2 dimensions of `input`.
END
}