未验证 提交 1e72e032 编写于 作者: L Leo Chen 提交者: GitHub

remove duplicated macro (#29563)

上级 6702040e
...@@ -20,11 +20,6 @@ namespace math { ...@@ -20,11 +20,6 @@ namespace math {
#define CUDA_NUM_THREADS 1024 #define CUDA_NUM_THREADS 1024
// CUDA: grid stride looping
#define CUDA_KERNEL_LOOP(i, n) \
for (size_t i = blockIdx.x * blockDim.x + threadIdx.x; i < (n); \
i += blockDim.x * gridDim.x)
inline static int PADDLE_GET_BLOCKS(const int N) { inline static int PADDLE_GET_BLOCKS(const int N) {
return (N + CUDA_NUM_THREADS - 1) / CUDA_NUM_THREADS; return (N + CUDA_NUM_THREADS - 1) / CUDA_NUM_THREADS;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册