user18029267
user18029267

Reputation:

CUDA do deprecated functions still function in newer versions?

Does the function cudaGLRegisterBufferObject (deprecated after version 3.0) still work in newer versions (ie 6.X) ?

(I know that cudaGraphicsGLRegisterBuffer exists, however I'm doing some work on an old colleague's project and I don't know if a bug is caused by this, or something completely different.)

Thanks in advance.

Upvotes: 0

Views: 324

Answers (1)

Robert Crovella
Robert Crovella

Reputation: 151799

It should still work as of CUDA 11.6.2

At the moment, it is documented here so it is still present/available and should be still usable.

Deprecated means that it may be dropped in a future CUDA version. When it is dropped, it is no longer usable (meaning you won't be able to compile code that uses that API, in that future CUDA version where the support was dropped.)

Upvotes: 1

Related Questions