equal function

VARP equal(
  1. VARP x,
  2. VARP y
)

Returns the truth value of (x == y) element-wise.

Args:

  • x: A variable. Must be one of the following types: Halide_Type_Float, Halide_Type_Int
  • y: A variable. Must have the same type as x.

Returns:

  • A variable of type bool.

Implementation

VARP equal(VARP x, VARP y) => VARP.fromPointer(C.mnn_expr_Equal(x.ptr, y.ptr));