cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

mordock2012
Journeyman III

API usage question.

I have an openCL kernel that is taking a substantial number of parameters. What I would like to do is move as much data to the card as possible

and not send the data as a parameter every time. Is there a best practice with the JOCL api for accomplishing this. The way I have it set up now it is sending too much data per kernel execution.

0 Likes
1 Reply
nou
Exemplar

try pack them into struct and pass as __constant buffer.

0 Likes