Read files

External Image Hello everybody! I have one question: if I want to read a file until one position, and after that I want to continue reading the file, but from this position, is any function there in CUDA to do this?

Thanks for all External Image

No, CUDA has no functions to read from files, as the GPU can not read from files. You have to read from files in normal C code, after wich you transfer data to GPU & run a kernel. So just read a file in the way you normally do in C.

:lol: Thank you very much. I´m going to try this way. External Media