c# - Does Alea GPU support dynamic parallelism? -


i need call cublas functions , of kernel functions kernel.

how in alea gpu?

in case alea gpu doesn't support that, there alternative on c# such feature.

aleagpu supports dynamic parallelism.

you can way:

gpu.default.launch(() => {      // note calling kernel inside kernel.     var lp = new launchparam(1, 1024);     deviceruntime.launch(yourkernel, lp)  }, new launchparam(1, 1)); 

use latest aleagpu release: https://www.nuget.org/packages/alea/3.0.4-beta3

what cannot do, (unfortunately), call cublas inside kernel. cublas urge use latest version in separate nuget package: https://www.nuget.org/packages/alea.cudatoolkit/


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -