ggml_rms_norm_back: RMS Norm Backward (Graph)
Description
Creates a graph node for backward pass of RMS normalization.
Used in training for computing gradients.
Usage
ggml_rms_norm_back(ctx, a, b, eps = 1e-05)
Value
Tensor representing the gradient with respect to input
Arguments
- ctx
GGML context
- a
Input tensor (x from forward pass)
- b
Gradient tensor (dy)
- eps
Epsilon for numerical stability (default 1e-5)