Commits


Jiajie Hu authored and GitHub committed acba63c36a6
[js/webgpu] Change A/sqrt(B) to A*inverseSqrt(B) in normalization ops (#19101) ### Description Change `A / sqrt(B)` to `A * inverseSqrt(B)` in BatchNormalization, InstanceNormalization, LayerNormalization and SkipLayerNormalization. ### Motivation and Context For the same reason as the existence of the `inverseSqrt` built-in in WebGPU spec.