MCPcopy Create free account
hub / github.com/csuhan/OneLLM / group_points_wrapper_fast

Function group_points_wrapper_fast

model/lib/pointnet2/src/group_points.cpp:24–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22
23
24int group_points_wrapper_fast(int b, int c, int n, int npoints, int nsample,
25 at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor) {
26
27 const float *points = points_tensor.data<float>();
28 const int *idx = idx_tensor.data<int>();
29 float *out = out_tensor.data<float>();
30
31 cudaStream_t stream = at::cuda::getCurrentCUDAStream().stream();
32 group_points_kernel_launcher_fast(b, c, n, npoints, nsample, points, idx, out, stream);
33 return 1;
34}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected