tanh function

VARP tanh(
  1. VARP x
)

Computes hyperbolic tangent of x element-wise.

Given an input variable, this function computes hyperbolic tangent of every element in the variable.

Input range is -inf, inf and output range is -1,1.

Args:

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

Returns:

  • A variable. Has the same type as x.

Implementation

VARP tanh(VARP x) => VARP.fromPointer(C.mnn_expr_Tanh(x.ptr));