Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将使用 OpenCL 并行化加密/解密过程。
为此,我只想使用现有的 openSSL 加密库函数,而不是创建自己的算法,如 AES、DES。
所以我要从 OpenCL 内核调用一个 openSSL 加密函数。您能否澄清我的查询,是否可能?
不,您仅限于内置函数和您自己在内核级别定义的函数。如果您将主机和设备视为两个单独的实体,它们只能通过命令队列及其相关调用进行通信,这一点会立即变得清晰(在 GPU 的情况下)。