tf.minimum(x, y, name=None) Returns the min of x and y (i.e. x < y ? x : y) element-wise. NOTE:
tf.truediv(x, y, name=None) Divides x / y elementwise, always producing floating point results. The
tf.asin(x, name=None) Computes asin of x element-wise. Args:
tf.pow(x, y, name=None) Computes the power of one value to another. Given a tensor x
tf.fft2d(input, name=None) Compute the 2-dimensional discrete Fourier Transform over the inner-most 2
tf.transpose(a, perm=None, name='transpose') Transposes a. Permutes the dimensions according to perm
tf.erfc(x, name=None) Computes the complementary error function of x element-wise. Args:
tf.cos(x, name=None) Computes cos of x element-wise. Args:
tf.invert_permutation(x, name=None) Computes the inverse permutation of a tensor. This operation
tf.fft(input, name=None) Compute the 1-dimensional discrete Fourier Transform over the inner-most dimension
Page 2 of 11