erfinv function

VARP erfinv(
  1. VARP x
)

Computes the inverse function for erf, for x element-wise.

Args:

  • x: A variable. Must be one of the following types: Halide_Type_Int or Halide_Type_Float

Note: The input of atan will lie within (-1, 1).

Returns:

  • A variable. Has the same type as x.

Implementation

VARP erfinv(VARP x) => VARP.fromPointer(C.mnn_expr_Erfinv(x.ptr));