Returns the truth value of (x <= y) element-wise. *NOTE*: `LessEqual` supports broadcasting. More about broadcasting [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
(scope *Scope, x tf.Output, y tf.Output)
| 33955 | // *NOTE*: `LessEqual` supports broadcasting. More about broadcasting |
| 33956 | // [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html) |
| 33957 | func LessEqual(scope *Scope, x tf.Output, y tf.Output) (z tf.Output) { |
| 33958 | if scope.Err() != nil { |
| 33959 | return |
| 33960 | } |
| 33961 | opspec := tf.OpSpec{ |
| 33962 | Type: "LessEqual", |
| 33963 | Input: []tf.Input{ |
| 33964 | x, y, |
| 33965 | }, |
| 33966 | } |
| 33967 | op := scope.AddOperation(opspec) |
| 33968 | return op.Output(0) |
| 33969 | } |
| 33970 | |
| 33971 | // Computes the minimum along segments of a tensor. |
| 33972 | // |