This commit is contained in:
2025-09-21 20:19:11 +08:00
parent a1c96ae790
commit 8cf5c0b90b

View File

@@ -0,0 +1,9 @@
#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