In-place ELU — overwrites x with .
Computes the out-of-place result via elu then copies it
back into x (the engine has no native fused in-place kernel).
Parameters
Input; modified in place.
alphafloat= 1.0Negative-side scale parameter . Default
1.0.inplacebool= TrueIgnored; this entry point is always in-place. Default
True.Returns
TensorThe same x tensor, now holding elu(x, alpha).