Skip to content

Commit

Permalink
scripts: verbose_converter: benchdnn: fix zp for matmul
Browse files Browse the repository at this point in the history
  • Loading branch information
igorsafo committed Mar 11, 2024
1 parent ecd7fb6 commit 15c7916
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/verbose_converter/src/benchdnn_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,9 +635,9 @@ def convert_zp_policy(value, prim_kind):
if prim_kind == "matmul":
masks = {
0: "common",
2: "per_dim_1",
2: "per_oc",
3: "per_ocic",
4: "per_dim_2",
4: "per_oc",
6: "per_ocic",
12: "per_ocic",
}
Expand Down

0 comments on commit 15c7916

Please sign in to comment.