Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
KodiaqQ committed Dec 18, 2024
1 parent 5d0f3bc commit 84db55f
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions nncf/quantization/algorithms/fast_bias_correction/torch_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,6 @@ class PTFastBiasCorrectionAlgoBackend(FastBiasCorrectionAlgoBackend):
TargetType.POST_LAYER_OPERATION: TargetType.OPERATOR_POST_HOOK,
}

def __init__(self):
super().__init__()
self._node_mapping = None

@property
def node_mapping(self):
return self._node_mapping

@node_mapping.setter
def node_mapping(self, model):
self._node_mapping = {}

@staticmethod
def target_point(target_type: TargetType, target_node_name: str, port_id: int) -> PTTargetPoint:
if NNCFGraphNodeType.INPUT_NODE in target_node_name or target_type == TargetType.POST_LAYER_OPERATION:
Expand Down

0 comments on commit 84db55f

Please sign in to comment.