circular buffer with CUDA unified memory

Good Morning,

Has anyone ever implemented a circular queue using the CUDA unified memory construct? I am new to unified memory so any hints would be greatly appreciated.

Thank you.

There isn’t anything I can think of pertaining to unified memory that would make the implementation any different.

If you can create a circular buffer using cudaMalloc, the implementation should basically be identical using UM.

okay. Thanks