aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_IFFT3D.pbtxt
blob: 52f1118775b16820f5e1bf6f0f9d934219b10f9d (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: "IFFT3D"
  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 3
  dimensions of `input` are replaced with their inverse 3D Fourier transform.

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