在 CUDA 内核中使用虚拟函数

发布于 2024-11-02 12:09:08 字数 370 浏览 0 评论 0原文

所以我想在设备上分配一个具有虚拟函数的对象,然后调用内核并执行其中一些虚拟函数。我尝试了两种方法来做到这一点,但都不起作用:

1)使用 cudaMalloc 和 cudaMemcpy 从主机分配和复制对象。这会复制包含主机内存指针的虚拟函数表,这在设备上执行时显然会导致内核崩溃。

2) 从第二个内核分配对象,保存指向该对象的设备内存指针,并将该指针传递给原始内核。然而,由于内核不同,内核执行时函数在设备内存中的位置并不相同,并且虚拟函数表不正确,使用时会导致内核崩溃。

我是否只能将虚拟函数与在内核中创建的调用该函数的对象一起使用?

当我分配对象以获得正确的虚拟函数表时,我可以以某种方式引用原始内核吗?

我是否明白这里的实际问题是什么?

So I want to allocate an object with virtual functions on the device, then call a kernel and execute some of those virtual functions. I have tried two ways to do this but neither work:

1) Allocate and copy the object from the host using cudaMalloc and cudaMemcpy. This copies over the virtual function table that contains host memory pointers which obviously crash the kernel when executing on the device.

2) Allocate the object from a second kernel, save the device memory pointer to the object and pass that pointer to the original kernel. However, since the kernels are different, the functions are not in the same places in device memory upon kernel execution and the virtual function table is incorrect and crashes the kernel when used.

Can I only use virtual functions with objects created in the kernel the functions are called from?

Can I somehow reference the original kernel when I allocate my objects to get the virtual function table right?

Do I even understand what the actual problem is here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日暮斜阳 2024-11-09 12:09:08

我明白这里的实际问题是什么吗?

一部分。

当您在 cuda 中试验 C++ 时,并不完全支持。从4.0开始才可以使用虚函数。

  1. 确保您有 4.0 驱动程序/api。

  2. 发布您的错误日志。

Do I even understand what the actual problem is here?

Part of it.

As you experimented C++ in cuda is not fully supported. Only Starting from 4.0 you can use the virtual function.

  1. Make sure you have the 4.0 driver / api.

  2. Post your Error log.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文