Initial commit

This commit is contained in:
erikwijmans
2017-12-26 18:43:17 -05:00
commit dc4e2b0db3
42 changed files with 3486 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef _BALL_QUERY_GPU
#define _BALL_QUERY_GPU
#ifdef __cplusplus
extern "C" {
#endif
void query_ball_point_kernel_wrapper(int b, int n, int m, float radius,
int nsample, const float *xyz,
const float *new_xyz, int *idx,
cudaStream_t stream);
#ifdef __cplusplus
}
#endif
#endif