gather_points.py 1.5 KB
Newer Older
wuyuefeng's avatar
wuyuefeng committed
1
2
3
4
5
6
7
import torch
from torch.autograd import Function

from . import gather_points_ext


class GatherPoints(Function):
zhangwenwei's avatar
zhangwenwei committed
8
    """Gather Points.
wuyuefeng's avatar
wuyuefeng committed
9
10
11
12
13
14

    Gather points with given index.
    """

    @staticmethod
    def forward(ctx, features: torch.Tensor,
15
                indices: torch.Tensor) -> torch.Tensor:
wuyuefeng's avatar
wuyuefeng committed
16
17
18
19
        """forward.

        Args:
            features (Tensor): (B, C, N) features to gather.
20
            indices (Tensor): (B, M) where M is the number of points.
wuyuefeng's avatar
wuyuefeng committed
21
22
23
24
25

        Returns:
            Tensor: (B, C, M) where M is the number of points.
        """
        assert features.is_contiguous()
26
        assert indices.is_contiguous()
wuyuefeng's avatar
wuyuefeng committed
27

28
        B, npoint = indices.size()
wuyuefeng's avatar
wuyuefeng committed
29
30
31
32
        _, C, N = features.size()
        output = torch.cuda.FloatTensor(B, C, npoint)

        gather_points_ext.gather_points_wrapper(B, C, N, npoint, features,
33
                                                indices, output)
wuyuefeng's avatar
wuyuefeng committed
34

35
36
        ctx.for_backwards = (indices, C, N)
        ctx.mark_non_differentiable(indices)
wuyuefeng's avatar
wuyuefeng committed
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
        return output

    @staticmethod
    def backward(ctx, grad_out):
        idx, C, N = ctx.for_backwards
        B, npoint = idx.size()

        grad_features = torch.cuda.FloatTensor(B, C, N).zero_()
        grad_out_data = grad_out.data.contiguous()
        gather_points_ext.gather_points_grad_wrapper(B, C, N, npoint,
                                                     grad_out_data, idx,
                                                     grad_features.data)
        return grad_features, None


gather_points = GatherPoints.apply