Softplus Function
Smooth approximation of ReLU: softplus(x) = log(1 + e^x).
Smooth approximation of ReLU: softplus(x) = log(1 + e^x). Used in Mamba to compute Δ = softplus(Linear(u_t)). Always positive, differentiable, and smooth; ensures Δ is in a reasonable range for stability.