Lines Matching refs:dim3
25 struct dim3 { struct
27 __host__ __device__ dim3(unsigned x, unsigned y = 1, unsigned z = 1) : x(x), y(y), z(z) {} in x() argument
33 int hipConfigureCall(dim3 gridSize, dim3 blockSize, size_t sharedSize = 0,
35 extern "C" hipError_t __hipPushCallConfiguration(dim3 gridSize, dim3 blockSize,
39 extern "C" hipError_t hipLaunchKernel(const void *func, dim3 gridDim,
40 dim3 blockDim, void **args,
44 extern "C" hipError_t hipLaunchKernel_spt(const void *func, dim3 gridDim,
45 dim3 blockDim, void **args,
52 extern "C" int cudaConfigureCall(dim3 gridSize, dim3 blockSize,
55 extern "C" int __cudaPushCallConfiguration(dim3 gridSize, dim3 blockSize,
58 extern "C" cudaError_t cudaLaunchKernel(const void *func, dim3 gridDim,
59 dim3 blockDim, void **args,