#ifndef _SAMPLING_GPU_H #define _SAMPLING_GPU_H #include #include #include int farthest_point_sampling_wrapper(int b, int n, int m, at::Tensor points_tensor, at::Tensor temp_tensor, at::Tensor idx_tensor); void farthest_point_sampling_kernel_launcher(int b, int n, int m, const float *dataset, float *temp, int *idxs); #endif