fd55cf8ea1dd674fbe60ade84709fe5666dd9434,pointnet2_ops_lib/pointnet2_ops/pointnet2_utils.py,GroupingOperation,forward,#Any#Any#Any#,194

Before Change


            (B, C, npoint, nsample) tensor
        
        B, nfeatures, nsample = idx.size()
        _, C, N = features.size()

        ctx.for_backwards = (idx, N)

        return _ext.group_points(features, idx)

After Change


        torch.Tensor
            (B, C, npoint, nsample) tensor
        
        ctx.save_for_backward(idx, features)

        return _ext.group_points(features, idx)

    @staticmethod
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: erikwijmans/Pointnet2_PyTorch
Commit Name: fd55cf8ea1dd674fbe60ade84709fe5666dd9434
Time: 2020-04-16
Author: etw@gatech.edu
File Name: pointnet2_ops_lib/pointnet2_ops/pointnet2_utils.py
Class Name: GroupingOperation
Method Name: forward


Project Name: erikwijmans/Pointnet2_PyTorch
Commit Name: fd55cf8ea1dd674fbe60ade84709fe5666dd9434
Time: 2020-04-16
Author: etw@gatech.edu
File Name: pointnet2_ops_lib/pointnet2_ops/pointnet2_utils.py
Class Name: ThreeInterpolate
Method Name: forward


Project Name: erikwijmans/Pointnet2_PyTorch
Commit Name: fd55cf8ea1dd674fbe60ade84709fe5666dd9434
Time: 2020-04-16
Author: etw@gatech.edu
File Name: pointnet2_ops_lib/pointnet2_ops/pointnet2_utils.py
Class Name: GatherOperation
Method Name: forward