Vector of strings OpenCL C++

Hi,

I am new to OpenCL C++ programming. I was wondering if it is possible to do some string processing on GPUs using OpenCL C++. Like I have vector of strings
vector jabi;
jabi[0]=hassan;
jabi[1]=hassam;

How can I copy this data to GPU and do a comparison?

Regards,

What exactly are you trying to do to these strings? Not every algorithm is going to work well on the GPU, or be worth the time it takes to upload the data to the GPU so it can work on it.

I am still understanding things yet. What I want is I am trying to figure out if it is possible to implement a de bruijn graph on GPUs using OpenCL C++.

Thanks

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.