Skip to content

Commit

Permalink
rm rubbish
Browse files Browse the repository at this point in the history
  • Loading branch information
akihironitta committed Dec 29, 2024
1 parent 08a5582 commit a95532e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyg_lib/ops/scatter_reduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def fused_scatter_reduce(
out = inputs.new(dim_size, len(reduce_list) * num_feats)

# Pre-processing: Take care of correct initialization for each reduction:
for i, reduce in enumerate(reduce_list):
for reduce in reduce_list:
assert reduce in REDUCTIONS
if reduce == 'min':
fill_value = float('inf')
Expand Down

0 comments on commit a95532e

Please sign in to comment.