cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

akhal
Journeyman III

Porting fortran spread function to OpenCL

Hello

I want to implement fortran spread function in OpenCL kernel. For example; inside a loop with index k, I have following fortran statements that need to make (n-k)(n-k) matrices first from a row of matrix "a" and then from a column of matrix "a";

spread(a(k,k+1:n),1,n-k)
spread(a(k+1:n,k),2,n-k)

I will probably make a new matrix in each iteration of loop inside OpenCL kernel and will need to spread kth row along all rows of one matrix and to spread kth column along all colums of second matrix. How could I do that in Opencl kernel?

0 Likes
0 Replies