Skip to content

Commit

Permalink
Fix: missing comma in initialize_opt
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianandresgrob committed Nov 15, 2023
1 parent f7687e9 commit 62d2919
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/brevitas/graph/gpfq.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,10 @@ def initialize_module_optimizer(
act_order=act_order,
len_parallel_layers=len_parallel_layers,
create_weight_orig=create_weight_orig,
p=self.p
p=self.p,
accumulator_bit_width=self.accumulator_bit_width)


class GPFQ(GPxQ):
"""
Based on https://github.com/YixuanSeanZhou/Quantized_Neural_Nets/tree/main
Expand Down

0 comments on commit 62d2919

Please sign in to comment.