CUDA 堆栈压入和弹出
我正在尝试实现一个可以推送 (x,y) 和弹出值的堆栈。
我已经浏览了 Nvidia 论坛,但是我可以找到实现堆栈的方法。
如果有人能展示最简单的例子,那将非常有用!
谢谢。
I am trying to implement a stack that I can push (x,y) and pop values.
I have look all over the Nvidia forum however I can see to find anyway of implementing a stack.
If anyone could show the simplest example that would be very useful!
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想想你的堆栈是否真的是快速且大规模并行的数据结构?如果是,您应该能够在 CUDA 中实现,就像在 C 中一样。
Think over if your stack is really the data structure that will be fast and massively parallel? If yes, you should be able to implement in CUDA, just like you would in C.