xiexh20's picture
add hdm demo v1
2fd6166
raw
history blame
No virus
276 Bytes
#ifndef _BALL_QUERY_HPP
#define _BALL_QUERY_HPP
#include <torch/extension.h>
at::Tensor ball_query_forward(at::Tensor centers_coords,
at::Tensor points_coords, const float radius,
const int num_neighbors);
#endif