PointMLP/pointnet2_ops_lib/pointnet2_ops/_ext-src/include/interpolate.h

11 lines
386 B
C
Raw Normal View History

2021-10-04 07:25:18 +00:00
#pragma once
#include <torch/extension.h>
#include <vector>
std::vector<at::Tensor> three_nn(at::Tensor unknowns, at::Tensor knows);
at::Tensor three_interpolate(at::Tensor points, at::Tensor idx,
at::Tensor weight);
at::Tensor three_interpolate_grad(at::Tensor grad_out, at::Tensor idx,
at::Tensor weight, const int m);