Skip to content

Commit

Permalink
fix super
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 committed Sep 10, 2024
1 parent d50a311 commit b4d744d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/brevitas/export/inference/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def prepare_for_export(self, module):
if module._cached_weight is not None and not module.cache_inference_quant_weight_metadata_only:
self.cached_weight = module._cached_weight
else:
super.prepare_for_export(module)
super().prepare_for_export(module)

def forward(self, x) -> Tuple[torch.Tensor]:
if self.cached_weight is not None:
Expand Down

0 comments on commit b4d744d

Please sign in to comment.