Dose anyone knows the difference between Kernel<<<G,B>>>(){} and the Function cudaLaunchKernel()

Dose anyone knows the difference between Kernel<<<G,B>>>(){} and the Function cudaLaunchKernel()?

For the right choices of parameters to cudaLauncKernel, they should be equivalent. If you profile a code you will discover that cudaLaunchKernel is being called when you put Kernel<<<…>>>(…); in your code.

Thanks Buddy,really helpful.