/// <amd-module name="@tensorflow/tfjs-core/dist/ops/less_equal" />
|
import { Tensor } from '../tensor';
|
import { TensorLike } from '../types';
|
/**
|
* Returns the truth value of (a <= b) element-wise. Supports broadcasting.
|
*
|
* ```js
|
* const a = tf.tensor1d([1, 2, 3]);
|
* const b = tf.tensor1d([2, 2, 2]);
|
*
|
* a.lessEqual(b).print();
|
* ```
|
*
|
* @param a The first input tensor.
|
* @param b The second input tensor. Must have the same dtype as `a`.
|
*
|
* @doc {heading: 'Operations', subheading: 'Logical'}
|
*/
|
declare function lessEqual_<T extends Tensor>(a: Tensor | TensorLike, b: Tensor | TensorLike): T;
|
export declare const lessEqual: typeof lessEqual_;
|
export {};
|