Files
OpenPCDet/pcdet/ops/pointnet2/pointnet2_stack/src/cuda_utils.h
2025-09-21 20:19:11 +08:00

10 lines
162 B
C

#ifndef _STACK_CUDA_UTILS_H
#define _STACK_CUDA_UTILS_H
#include <cmath>
#define THREADS_PER_BLOCK 256
#define DIVUP(m,n) ((m) / (n) + ((m) % (n) > 0))
#endif