//! Activation functions.
usecrate::tensor::Tensor;/// Element-wise ReLU activation: `max(0, x)`.
////// This is a free function, not a `Module`, because ReLU has no learnable
/// parameters and no state.
pubfnrelu(input:&Tensor)-> Tensor{
input.relu()}