Displaying 2 results from an estimated 2 matches for "clcreateprogramfromsourc".
Did you mean:
clcreateprogramfromsource
2019 Sep 19
2
Execute OpenCL
Dear all,
After a huge amount of time trying to install LLVM and Clang i could
finally do it, so now im trying to use this tools for generating a
bytecode, then apply it modular optimizations and then generate an
executable to test the result.
First, I only want to compile a project and execute it to see how it works,
specifically this one:
2019 Sep 26
3
Execute OpenCL
...t;
>
> > I want to do that the .c file uses the .cl that i have compiled before
> with clang and i do not know how to do it.
>
>
>
> This is an interesting question. Basically, in OpenCL you can build your
> device program in a separate ways:
>
>
>
> 1. Use clCreateProgramFromSource + clBuildProgram: this is so-called
> “online” compilation, when your device code is written in OpenCL C and its
> compilation is performed in runtime (all stages like front-end, middle-end
> optimizations and back-end, i.e. codegen to native code)
> 2. Use clCreateProgramW...