test_sampler.py 543 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import torch

from torch_cluster import neighbor_sampler


def test_neighbor_sampler():
    torch.manual_seed(1234)

    start = torch.tensor([0, 1])
    cumdeg = torch.tensor([0, 3, 7])
    col = torch.tensor([1, 2, 3, 0, 2, 3, 4])

    n_id, e_id = neighbor_sampler(start, cumdeg, col, size=1.0)
    assert n_id.tolist() == [0, 1, 2, 3, 4]
    assert e_id.tolist() == [0, 2, 1, 5, 6, 3, 4]

    n_id, e_id = neighbor_sampler(start, cumdeg, col, size=3)
    assert n_id.tolist() == [1, 2, 3, 4]
    assert e_id.tolist() == [1, 0, 2, 4, 5, 6]