Questions tagged [opencl-pipes]
3 questions
6
votes
1 answer
OpenCL pipes on intel CPU
I am working on my dissertation project trying to investigate if and when the use of OpenCL pipes can be useful also on CPUs (we already know they are widely used in FPGAs).
I am trying to implement even the simplest algorithm where I have a…

Giacomo Benso
- 97
- 9
5
votes
1 answer
OpenCL 2.x pipes - how do they actually work?
I've read this description of the OpenCL 2.x pipe API and leaded through the Pipe API pages at khronos.org. I felt kind of jealous, working in CUDA almost exclusively, of this nifty feature available only in OpenCL (and sorry that CUDA functionality…

einpoklum
- 118,144
- 57
- 340
- 684
0
votes
1 answer
Kernel hangs when using OpenCL pipes
I am trying to write an OpenCL kernel that uses OpenCL pipes. The kernel code is given below.
uint tid = get_global_id(0);
uint numWorkItems = get_global_size(0);
int i;
int rid;
int temp = 0, temp1 = 0;
int val;
int …

Johns Paul
- 633
- 6
- 22