Does Alea GPU support dynamic parallelism?
问题 I need to call cuBLAS functions and some of my kernel functions from a kernel. How to do so in Alea GPU? In the case Alea GPU doesn't support that, is there any alternative on C# with such feature. 回答1: AleaGpu supports dynamic parallelism. You can do it this way: Gpu.Default.Launch(() => { // Note you are calling a kernel inside a kernel. var lp = new LaunchParam(1, 1024); DeviceRuntime.Launch(YourKernel, lp) }, new LaunchParam(1, 1)); Use the latest AleaGpu release: https://www.nuget.org