Skip to content

Commit

Permalink
Update sensing/autoware_cuda_pointcloud_preprocessor/src/cuda_pointcl…
Browse files Browse the repository at this point in the history
…oud_preprocessor/cuda_pointcloud_preprocessor.cu

Co-authored-by: Manato Hirabayashi <[email protected]>
  • Loading branch information
knzo25 and manato authored Jan 10, 2025
1 parent 887f162 commit 0b46fb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ __global__ void cropBoxKernel(
}

__global__ void combineMasksKernel(
uint32_t * mask1, uint32_t * mask2, uint32_t * mask3, int num_points, uint32_t * output_mask)
const uint32_t * __restrict__ mask1, const uint32_t * __restrict__ mask2, const uint32_t * __restrict__ mask3, int num_points, uint32_t * output_mask)
{
int idx = blockIdx.x * blockDim.x + threadIdx.x;
if (idx < num_points) {
Expand Down

0 comments on commit 0b46fb6

Please sign in to comment.