We can do printf
in kernels now, but is it possible to use the
sprintf(buffer, format, arg, ... )
function?
I'm doing CUDA-accelerated OBJ file writing, and I need to convert float
s into ASCII strings for writing.
Edit: CUDA is not doing the actual writing of course =) Just generating the obj char
buffers from a list of floats
.