We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08a5582 commit a95532eCopy full SHA for a95532e
pyg_lib/ops/scatter_reduce.py
@@ -120,7 +120,7 @@ def fused_scatter_reduce(
120
out = inputs.new(dim_size, len(reduce_list) * num_feats)
121
122
# Pre-processing: Take care of correct initialization for each reduction:
123
- for i, reduce in enumerate(reduce_list):
+ for reduce in reduce_list:
124
assert reduce in REDUCTIONS
125
if reduce == 'min':
126
fill_value = float('inf')
0 commit comments