CUDA 比较数组

发布于 2024-08-28 12:14:13 字数 379 浏览 6 评论 0原文

尝试制作一个可以比较一对多位图的应用程序。有一个参考位图和多个其他位图。每次比较的结果应该是具有差异的新位图。也许比较位图而不是纹理而不是数组?我最大的问题是让内核接受多个输入指针,以及如何比较数据..

extern "C" __global__ void compare(float *odata, float *idata, int width, int height)

有效,但以下无效(我使用足够的参数调用该函数)

extern "C" __global__ void compare(float *odata, float *idata, float *idata2, int width, int height)

Trying to make an app that will compare 1-to-multiple bitmaps. there is one reference bitmap and multiple other bitmaps. Result from each compare should be new bitmap with diffs. Maybe comparing bitmaps rather as textures than arrays? My biggest problem is making kernel accept more than one input pointer, and how to compare the data..

extern "C" __global__ void compare(float *odata, float *idata, int width, int height)

works and following does not (i call the function with enough params)

extern "C" __global__ void compare(float *odata, float *idata, float *idata2, int width, int height)

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

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

发布评论

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

评论(1

你曾走过我的故事 2024-09-04 12:14:13

你的函数原型没问题。问题出在别处。一般来说,请确保为所有输入和输出阵列正确分配设备内存,并确保正确地将数据复制到设备阵列或从设备阵列复制数据。

Your function prototypes are OK. The problem lies elsewhere. In general, make sure that you are properly allocating device memory for all input and output arrays, and make sure that you're correctly copying data to and from your device arrays.

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