NForge
Tensor library
Loading...
Searching...
No Matches
cuda_utils.h
1
#ifndef NFORGE_CUDA_UTILS_H
2
#define NFORGE_CUDA_UTILS_H
3
4
static
constexpr
int
BLOCK_SIZE = 256;
5
6
constexpr
int
getNumCUDABlocks(
size_t
count) {
return
(count + BLOCK_SIZE - 1) / BLOCK_SIZE; }
7
8
#endif
// NFORGE_CUDA_UTILS_H
src
backend
cuda
utils
cuda_utils.h
Generated by
1.9.8