You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Arm backend: Fix index bug in InsertRescaleInt32Pass (pytorch#15446)
qparams = node.meta["input_qparams"] maps arg index to qparam, which is
not guaranteed to go 0..N. In the pass,
range(len(qparams)) was used, which will always create indices 0..N.
This caused a KeyError in several torch audio models.
Signed-off-by: Erik Lundell <[email protected]>
0 commit comments