Abdullahil Kafi

Results 4 comments of Abdullahil Kafi

Hi,for Boost.compute i can convert the boost vector into vexcl vector but I am also trying to convert the opencl (Cl mem object) to a vexcl vector. Is it possible?

vex::vector a(&queue, &buffer, data_size); When I was trying to create the inline vector it doesn't work. It shows the error. I have the parameters to pass on to the inline...

// Wrap boost.compute vectors into vexcl vectors (no data is copied): compute::vector bcv(n, bcq.get_context()); vex::vector y({bcq}, bcv.get_buffer()); y = x * 2; this is the way to wrap a compute...