My code is originally fortran, I want to rewrite some loop to CUDA kernel function, but in the loop I call some other fortran function, so can I call fortran function in a kernel function?
Thx
My code is originally fortran, I want to rewrite some loop to CUDA kernel function, but in the loop I call some other fortran function, so can I call fortran function in a kernel function?
Thx
No - no more than you can call a normal C function in a kernel. Reimplement the function in CUDA.
Thx