Skip to content

Commit

Permalink
Fix (ptq/evaluate): add missing arg type
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 committed Dec 7, 2023
1 parent 69d3a1e commit af63b59
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,11 @@
type=int,
help='Input and weights bit width for first and last layer w/ layerwise backend (default: 8)')
parser.add_argument(
'--bias-bit-width', default=32, choices=[32, 16, None], help='Bias bit width (default: 32)')
'--bias-bit-width',
default=32,
type=int,
choices=[32, 16, None],
help='Bias bit width (default: 32)')
parser.add_argument(
'--act-quant-type',
default='sym',
Expand Down

0 comments on commit af63b59

Please sign in to comment.