Commits


Sunny Shukla authored and GitHub committed de77c60e6e8
[oneDNN ep] SLN performance improvement for bias (#13620) ### Description SkipLayerNorm performance improvement when bias is present as input ### Motivation and Context - For SkipLayerNorm op, adding bias tensor using post-op to the add primitive adding input and skip tensors is causing drastic performance degradation. - Hence the post-op is removed and instead, two add primitives are used in series, adding input and skip, and then adding bias to the result of input and skip. - This change has shown a significant amount of performance gain for SkipLayerNorm operator.