開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Xcode
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
OpenCL
問題(Question):
自學OpenCL差不多一個月
最近將OpenCL的host(.c) & kernel(.cl) codes 完成
一般都是call standard C code from OpenCL C code.
想請問我如何將kernel function寫成可直接作為單一C的程式?
例如我的kernel name: square
(___kernel void square(
global float* input,
global float* output))
如何將其直接寫成一個square.gpu(input, output)的c function?
看網路上沒找到類似的寫法:
#include "main.c"
#include "kernel.cl"
謝謝
補充說明(Supplement):