- Standard RMSNorm: basic RMS normalization that scales input by RMS and applies learned weight parameters
- Fused Add RMSNorm: adds residual connection before normalization in a single fused operation
batch_size: variablehidden_size: constant
hidden_states: [batch_size, hidden_size]weight: [hidden_size]- For Fused Add RMSNorm only:
residual: [batch_size, hidden_size]
output: [batch_size, hidden_size]

