Add File
This commit is contained in:
15
pcdet/ops/pointnet2/pointnet2_batch/src/ball_query_gpu.h
Normal file
15
pcdet/ops/pointnet2/pointnet2_batch/src/ball_query_gpu.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef _BALL_QUERY_GPU_H
|
||||
#define _BALL_QUERY_GPU_H
|
||||
|
||||
#include <torch/serialize/tensor.h>
|
||||
#include <vector>
|
||||
#include <cuda.h>
|
||||
#include <cuda_runtime_api.h>
|
||||
|
||||
int ball_query_wrapper_fast(int b, int n, int m, float radius, int nsample,
|
||||
at::Tensor new_xyz_tensor, at::Tensor xyz_tensor, at::Tensor idx_tensor);
|
||||
|
||||
void ball_query_kernel_launcher_fast(int b, int n, int m, float radius, int nsample,
|
||||
const float *xyz, const float *new_xyz, int *idx);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user