c++ oclバインディングを使用してプリプロセッサ定義として.clファイルで処理されるパラメータを渡す方法は?
意味:
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;
ありがとう、
ジョン