Skip to content

Commit 947438e

Browse files
committed
microfix
1 parent bcc0a15 commit 947438e

File tree

1 file changed

+1
-1
lines changed
  • src/nncf/quantization/algorithms/weight_compression

1 file changed

+1
-1
lines changed

src/nncf/quantization/algorithms/weight_compression/algorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ def get_statistic_points(
11661166
node_with_weight, weight_port_ids[0], graph
11671167
)
11681168
reduction_axes = (
1169-
(weight_reduction_axis,) if any(weight_dim == 3 for weight_dim in weight_dims) else reduction_axes
1169+
weight_reduction_axis if any(weight_dim == 3 for weight_dim in weight_dims) else reduction_axes
11701170
)
11711171

11721172
stat_collector = self._backend_entity.mean_statistic_collector(

0 commit comments

Comments
 (0)