Lines Matching defs:dim3
27 struct dim3 {
29 __host__ __device__ dim3(unsigned x, unsigned y = 1, unsigned z = 1) : x(x), y(y), z(z) {}
35 int hipConfigureCall(dim3 gridSize, dim3 blockSize, size_t sharedSize = 0,
37 extern "C" hipError_t __hipPushCallConfiguration(dim3 gridSize, dim3 blockSize,
41 extern "C" hipError_t hipLaunchKernel(const void *func, dim3 gridDim,
42 dim3 blockDim, void **args,
46 extern "C" hipError_t hipLaunchKernel_spt(const void *func, dim3 gridDim,
47 dim3 blockDim, void **args,
52 extern "C" unsigned __llvmPushCallConfiguration(dim3 gridDim, dim3 blockDim,
54 extern "C" unsigned llvmLaunchKernel(const void *func, dim3 gridDim, dim3 blockDim,
59 extern "C" int cudaConfigureCall(dim3 gridSize, dim3 blockSize,
62 extern "C" int __cudaPushCallConfiguration(dim3 gridSize, dim3 blockSize,
65 extern "C" cudaError_t cudaLaunchKernel(const void *func, dim3 gridDim,
66 dim3 blockDim, void **args,
68 extern "C" cudaError_t cudaLaunchKernel_ptsz(const void *func, dim3 gridDim,
69 dim3 blockDim, void **args,