Scalar

Scalar#

einx.add

Compute the sum of values of multiple given tensors.

einx.subtract

Computes the difference between values of two given tensors.

einx.multiply

Compute the product of values of multiple given tensors.

einx.true_divide

Computes the true division between values of two given tensors.

einx.floor_divide

Computes the floor division between values of two given tensors.

einx.divide

Computes the division between values of two given tensors.

einx.logical_and

Compute the logical conjunction (AND) of values of multiple given tensors.

einx.logical_or

Compute the logical disjunction (OR) of values of multiple given tensors.

einx.where

Conditionally select values from two tensors based on a boolean mask.

einx.less

Computes the less-than comparison between values of two given tensors.

einx.less_equal

Computes the less-than-or-equal comparison between values of two given tensors.

einx.greater

Computes the greater-than comparison between values of two given tensors.

einx.greater_equal

Computes the greater-than-or-equal comparison between values of two given tensors.

einx.equal

Computes the equality comparison between values of two given tensors.

einx.not_equal

Computes the non-equality comparison between values of two given tensors.

einx.maximum

Compute the maximum of values of multiple given tensors.

einx.minimum

Compute the minimum of values of multiple given tensors.

einx.logaddexp

Compute the log-sum-exp of values of multiple given tensors.