degree.py 180 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
6
7
import torch


def node_degree(index, out=None):
    one = torch.ones(index.size(1), out)
    zero = torch.zeros(index.size(1), out)
    return zero.scatter_add_(0, index[0], one)