Skip to main content

function

silu

silu(value: Symbol) -> Symbol

Computes the elementwise silu of a symbolic tensor.

Creates a new op node to compute the elementwise silu of a symbolic tensor and adds it to the graph, returning the symbolic result.

silu is defined as silu(x) = x * [sigmoid](#sigmoid)(x).

Args:

  • value (Symbol): The symbolic tensor to use as the input to the silu computation.

Returns:

A new symbolic tensor value representing the output of the absolute value computation.

Raises:

If the symbol doesn't represent a tensor value.