1

如何将 .cl 文件中处理的参数作为使用 c++ ocl 绑定定义的预处理器传递?

意义:

foo.cl

# define LIMIT 12
typedef struct {
    uint i[LIMIT];
} foomatic;

转向

foo_nodefs.cl

typedef struct {
    uint i[LIMIT]; // main.cpp passing LIMIT to set it
} foomatic;

谢谢,

约翰

4

1 回答 1

0

使用带有选项“-D LIMIT=12”的 cl::Program::build。

于 2013-07-13T20:15:37.333 回答