Searched refs:threadsx (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/core/util/ |
D | cuda_launch_config.h | 263 int threadsx = std::min({xdim, thread_per_block, xthreadlimit}); in GetCuda3DLaunchConfig() local 265 std::min({ydim, std::max(thread_per_block / threadsx, 1), ythreadlimit}); in GetCuda3DLaunchConfig() 267 std::min({zdim, std::max(thread_per_block / (threadsx * threadsy), 1), in GetCuda3DLaunchConfig() 270 int blocksx = std::min({block_count, DivUp(xdim, threadsx), xgridlimit}); in GetCuda3DLaunchConfig() 277 config.thread_per_block = dim3(threadsx, threadsy, threadsz); in GetCuda3DLaunchConfig()
|