Difference between cudamalloc() and cumalloc()?

I noticed in the CUDA programming guide that there is a mention about cumalloc() but there wasn’t a formal definition. Searching the internet did not yield any results for exactly how cumalloc() differs from cudamalloc(), if at all.

Any information on any differences would be greatly appreciated. Thanks!

Brian

Those are typos, thanks for catching. They should be cuMemAlloc() and cuMemAllocPitch(), respectively.

Paulius

Great, thanks for clearing that up!