我必须将压缩列存储中的稀疏矩阵与列向量相乘(我必须在开放 cl 中将其并行化)。我在互联网上搜索了很多天。花了这么多天但找不到任何东西。(我被允许搜索互联网因为我必须将其转换为并行)。但我只能找到压缩行存储的代码。
spmv_csr_serial(const int num_rows ,
const int * ptr ,
const int * indices ,
const float * data ,
const float * x,
float * y)
{
for(int row = 0; i < num_rows; i++){
float dot = 0;
int row_start = ptr[row];
int row_end = ptr[row+1];
for (int jj = row_start; jj < row_end; jj++)
dot += data[jj] * x[indices[jj]];
y[row] += dot;
}
}
压缩列存储没有行 ptr。那么如何将它与向量相乘呢?我只需要串行代码,我会自己将其转换为并行代码。
这是我的这个项目的 OpenCL 内核
enter code here
__kernel void mykernel(__global const int* val,__global const int* index,__global const int * ptr,__global const int* x,__global int* y)
{
int id=get_global_id(0);
int colstart=ptr[id];
int colend=ptr[id+1];
for(int j=colstart;j<colend;j++)
{
y[index[j]]=val[j]*x[index[j]];
}
}
此代码在 open cl 内核中返回垃圾值。这是我的序列号。
spmv_csr_serial(const int num_rows ,
const int * ptr ,
const int * indices ,
const float * data ,
const float * x,
float * y)
{
for(int row = 0; i < num_rows; i++){
float dot = 0;
int colstart = ptr[row];
int colend = ptr[row+1];
for(int j=colstart;j<colend;j++)
{
y[index[j]]=val[j]*x[index[j]];
}
}
}
密集矩阵向量乘法算法
For(int i=0;i<A.RowLength;i++)
{
For(int j=0;j<vector.length;j++)
{
Result[i]=Result[i]+A[i][j]*vector[j];
}
}