Home | History | Annotate | Download | only in op

Lines Matching defs:Square

2268 // Computes the determinant of one or more square matrices.
2271 // form square matrices. The output is a tensor containing the determinants
2884 // Computes reciprocal of square root of x element-wise.
2967 // Computes the inverse of one or more square invertible matrices or their
2972 // form square matrices. The output is a tensor of the same shape as the input
3008 // Computes square of x element-wise.
3011 func Square(scope *Scope, x tf.Output) (y tf.Output) {
3016 Type: "Square",
4325 // Each value in the result represents the square root of the sum of the real and
4771 // Computes square root of x element-wise.
10048 // form square matrices. `Rhs` is a tensor of shape `[..., M, K]`. The `output` is
13672 // one or more square matrices.
13675 // form square matrices. The outputs are two tensors containing the signs and
14430 // square matrices. If `lower` is `True` then the strictly upper triangular part
17508 // Computes the matrix exponential of one or more square matrices:
17518 // form square matrices. The output is a tensor of the same shape as the input
17612 // Computes the Cholesky decomposition of one or more square matrices.
17615 // form square matrices.
17713 // Computes the Eigen Decomposition of a batch of square self-adjoint matrices.
17718 // form square matrices, with the same constraints as the single matrix
17794 // Computes the eigen decomposition of one or more square self-adjoint matrices.
27072 // accum = rho() * accum + (1 - rho()) * grad.square();
27074 // update_accum = rho() * update_accum + (1 - rho()) * update.square();