search for: liblcl

Displaying 4 results from an estimated 4 matches for "liblcl".

Did you mean: libacl
2011 Oct 20
0
[LLVMdev] ANN: libclc (OpenCL C library implementation)
...ew point on pocl is the LLVM passes to statically create the different work items in a workgroup, and the barrier handling. Our kernel runtime library is currently in fact fairly small, including just a little more then the implementation-dependent functions. We are considering merging efforts with liblcl in that point. BR, Carlos > Am 19.10.2011 17:38, schrieb Hal Finkel: >> Do we have a list of these open-source LLVM-based OpenCL projects >> somewhere? Off the top of my head, we have: >> >> libclc: http://www.pcc.me.uk/~peter/libclc/ >> pocl: https://launchpad....
2011 Oct 21
0
[LLVMdev] ANN: libclc (OpenCL C library implementation)
...to statically create >> the different work items in a workgroup, and the barrier handling. Our >> kernel runtime library is currently in fact fairly small, including just >> a little more then the implementation-dependent functions. We are >> considering merging efforts with liblcl in that point. > Please excuse me for getting that wrong. > > I think we should really stick our heads together (also including Denis > Steckelmacher who implemented Clover) and somehow combine all our efforts. > Otherwise, we will probably just all solve the same problems in > pa...
2011 Oct 20
5
[LLVMdev] ANN: libclc (OpenCL C library implementation)
...the LLVM passes to statically create > the different work items in a workgroup, and the barrier handling. Our > kernel runtime library is currently in fact fairly small, including just > a little more then the implementation-dependent functions. We are > considering merging efforts with liblcl in that point. Please excuse me for getting that wrong. I think we should really stick our heads together (also including Denis Steckelmacher who implemented Clover) and somehow combine all our efforts. Otherwise, we will probably just all solve the same problems in parallel. Additionally, no u...
2011 Oct 19
6
[LLVMdev] ANN: libclc (OpenCL C library implementation)
Hi everybody, the compiler design lab at Saarland University (chair of Sebastian Hack) is also working on an LLVM-based OpenCL driver. The project started as a use-case for our "Whole-Function Vectorization" library, which allows to transform a function to compute the same as W executions of the original code by using SIMD instructions (W = 4 for SSE/AltiVec, 8 for AVX). The