Skip to content

Commit 026a3ea

Browse files
committed
fix: Fixed additional Qbmm mapping in test_saveconfig
Signed-off-by: Brandon Groth <[email protected]>
1 parent f220b17 commit 026a3ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/models/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# Local
3434
# fms_mo imports
3535
from fms_mo import qconfig_init
36-
from fms_mo.modules import QLSTM, QConv2d, QConvTranspose2d, QLinear
36+
from fms_mo.modules import QLSTM, QBmm, QConv2d, QConvTranspose2d, QLinear
3737
from fms_mo.utils.qconfig_utils import get_mx_specs_defaults, set_mx_specs
3838

3939
########################
@@ -1085,6 +1085,7 @@ def wanted_pair(request):
10851085
torch.nn.ConvTranspose2d: QConvTranspose2d,
10861086
torch.nn.Linear: QLinear,
10871087
torch.nn.LSTM: QLSTM,
1088+
"matmul_or_bmm": QBmm,
10881089
},
10891090
),
10901091
("checkQerr_frequency", False),

0 commit comments

Comments
 (0)