Hard SiLU activation function, also known as Hard Swish.
Source:R/activations.R
activation_hard_silu.RdIt is defined as:
0ifif x < -3xifx > 3x * (x + 3) / 6if-3 <= x <= 3
It's a faster, piecewise linear approximation of the silu activation.