Lines Matching defs:dim3
17 struct dim3 {
19 __host__ __device__ dim3(unsigned x, unsigned y = 1, unsigned z = 1) : x(x), y(y), z(z) {}
25 int hipConfigureCall(dim3 gridSize, dim3 blockSize, size_t sharedSize = 0,
27 extern "C" hipError_t __hipPushCallConfiguration(dim3 gridSize, dim3 blockSize,
30 extern "C" hipError_t hipLaunchKernel(const void *func, dim3 gridDim,
31 dim3 blockDim, void **args,
38 extern "C" int cudaConfigureCall(dim3 gridSize, dim3 blockSize,
41 extern "C" int __cudaPushCallConfiguration(dim3 gridSize, dim3 blockSize,
44 extern "C" cudaError_t cudaLaunchKernel(const void *func, dim3 gridDim,
45 dim3 blockDim, void **args,