Chris R Miller schrieb:
Trass3r wrote:
Is there any tutorial or code for using CUDA with D?
Short answer: no.
I looked into writing CUDA with D a while back. The problem is that the
CUDA C runtime and the D runtime are 100% incompatible. CUDA works by
taking C-like code and compiling it with a special NVCC compiler, which
emits code that's specifically for NVIDIA GPUs.
What a pity, just read that article and thought it might be possible to
get it to work:
http://www.ddj.com/architect/211800683
But thanks for your answer. Saves me some time ;)