HIP-CPU icon indicating copy to clipboard operation
HIP-CPU copied to clipboard

missing hipLaunchKernel() - the version with void **args

Open Noerr opened this issue 1 year ago • 2 comments

It looks like HIP has provided since 2019:

hipError_t  hipLaunchKernel(const void* function_address,
			    dim3 numBlocks, dim3 dimBlocks, void** args,
				size_t sharedMemBytes, hipStream_t stream);

HIP-CPU only provides hipLaunchKernelGGL with variadic macro expansion of kernel arguments. I want to use the cleaner void **args API provided by CUDA and HIP. Please implement this component of the HIP API

Noerr avatar Apr 04 '23 23:04 Noerr