Hi,

  We would like to convert an OpenCL program written in a separate file to a
C++ header (essentially a long string).

For example, if my OpenCL program is in the file Square.cl

__kernel square(   
   __global float* input,
   __global float* output,
   const unsigned int count)
{                  
   int i = get_global_id(0);
   if(i < count)   
       output[i] = input[i] * input[i];
}                  

I¹d like to turn it into something like this in Square.h:

const char *KernelSource = "\n" \
"__kernel square(                                                       \n"
\
"   __global float* input,                                              \n"
\
"   __global float* output,                                             \n"
\
"   const unsigned int count)                                           \n"
\
"{                                                                      \n"
\
"   int i = get_global_id(0);                                           \n"
\
"   if(i < count)                                                       \n"
\
"       output[i] = input[i] * input[i];                                \n"
\
"}                                                                      \n"
\
"\n";

So that my OpenCL code can be directly compiled into my executable.  This is
also useful for OpenGL shaders.

The question: is this something that CMake could do?  If so, any examples
where to begin looking?

Thanks,
-dan
-- 
Daniel Blezek, PhD
Medical Imaging Informatics Innovation Center

P 127 or (77) 8 8886
T 507 538 8886
E blezek.dan...@mayo.edu

Mayo Clinic
200 First St. S.W.
Harwick SL-44
Rochester, MN 55905
mayoclinic.org


_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to