- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试开发一个将矩阵 A 和 B 相乘的函数,它们是通用格式但本质上是稀疏的。这些矩阵包含复数。我的问题是,当我不使用该函数并将所有内容写入 main() 中时,乘法对于任何大小的数组都完美有效。但是当我使用自己的函数时,结果会损坏,并且大多数时候我会收到随机错误消息。
此函数的作用如下:
我的猜测是我从函数返回“结果”的方式在某种程度上是不正确的,因为我已经检查了步骤 1 和 2 的输出并且它们产生了正确的输出。
知道问题是什么吗?我将在下面包含我的代码的摘要版本以供您引用。
提前非常感谢您。
阿夫辛
/* ***************** Macro ********************* */
#define ALIGN 128
/* To avoid constantly repeating the part of code that checks different functions' status, using the below macros */
#define CHECK_SPARSE(function) do { \
if(function != SPARSE_STATUS_SUCCESS) \
{ \
status = 2; \
goto memory_free; \
} \
} while(0)
/* ****************** Main ******************** */
int main()
{
<< matrices A and B are generated using some data >>
MKL_INT stat = 0;
// This part calls the function to multiply matrices as I discussed.
// A x B --> csrC
sparse_matrix_t csrC = NULL;
stat = dnmm_sp_CSR_handle(CfPrime, Num_of_Buses, Num_of_Branches, CfPrime_nonzero, Yf, Num_of_Branches, Num_of_Buses, Yf_nonzero, &csrC);
printf("\nstat = %i", stat);
// Now I convert the csrC to 4-array version of CSR.
MKL_INT rows, cols;
sparse_index_base_t indexing = 0;
MKL_INT *columns_C = NULL, *pointerB_C = NULL, *pointerE_C = NULL;
MKL_Complex16 *values_C = NULL;
mkl_sparse_z_export_csr(csrC, &indexing, &rows, &cols, &pointerB_C, &pointerE_C, &columns_C, &values_C);
// Print the number of rows and columns of converted matrix (which are incorrect sizes)
printf("\nrows = %i , cols = %i", rows, cols);
}
/* ****************** Function ******************** */
// This function receives two dense matrice, convert them to sparse CSR format, multiply them, and returns the result in CSR handle
int dnmm_sp_CSR_handle(MKL_Complex16 *A, MKL_INT A_rownum, MKL_INT A_colnum, MKL_INT A_nnz, MKL_Complex16 *B, MKL_INT B_rownum, MKL_INT B_colnum, MKL_INT B_nnz, sparse_matrix_t *result) {
// A : Matrix A
// A_rownum : Number of rows in matrix A
// A_colnum : Number of columns in matrix A
// A_nnz : Number of nonzero elements in matrix A
// B : Matrix B
// B_rownum : Number of rows in matrix B
// B_colnum : Number of columns in matrix B
// B_nnz : Number of nonzero elements in matrix B
// result : return CSR handle for A x B
MKL_INT job[8];
job[0] = 0; // the rectangular matrix A is converted to the CSR format;
job[1] = 0; // zero-based indexing for the rectangular matrix A is used;
job[2] = 0; // zero-based indexing for the matrix in CSR format is used;
job[3] = 2; // whole matrix
//job[4] // maximum number of the non-zero elements allowed if job[0] = 0
job[5] = 5; // If job[5]>0, arrays acsr, ia, ja are generated for the output storage. If job[5]=0, only array ia is generated for the output storage.
MKL_INT info = 0; // If info = 0, execution of mkl_zdnscsr was successful.
MKL_INT status = 1; // return this value to check the execution status
//(1 : successfull, 2: error in sparse functions, 3: error in deallocating memory)
MKL_Complex16 *A_val = (MKL_Complex16 *)mkl_malloc(A_nnz * sizeof(MKL_Complex16), ALIGN);
MKL_INT *A_col = (MKL_INT *)mkl_malloc(A_nnz * sizeof(MKL_INT), ALIGN);
MKL_INT *A_row = (MKL_INT *)mkl_malloc( (A_rownum + 1) * sizeof(MKL_INT), ALIGN); // +1 is because we are using 3-aaray variation
job[4] = A_nnz;
mkl_zdnscsr(job, &A_rownum, &A_colnum, A, &A_colnum, A_val, A_col, A_row, &info);
MKL_Complex16 *B_val = (MKL_Complex16 *)mkl_malloc(B_nnz * sizeof(MKL_Complex16), ALIGN);
MKL_INT *B_col = (MKL_INT *)mkl_malloc(B_nnz * sizeof(MKL_INT), ALIGN);
MKL_INT *B_row = (MKL_INT *)mkl_malloc((B_rownum + 1) * sizeof(MKL_INT), ALIGN); // +1 is because we are using 3-aaray variation
job[4] = B_nnz;
mkl_zdnscsr(job, &B_rownum, &B_colnum, B, &B_colnum, B_val, B_col, B_row, &info);
sparse_matrix_t csrA = NULL, csrB = NULL;
CHECK_SPARSE( mkl_sparse_z_create_csr(&csrA, SPARSE_INDEX_BASE_ZERO, A_rownum, A_colnum, A_row, A_row + 1, A_col, A_val) );
CHECK_SPARSE( mkl_sparse_z_create_csr(&csrB, SPARSE_INDEX_BASE_ZERO, B_rownum, B_colnum, B_row, B_row + 1, B_col, B_val) );
CHECK_SPARSE( mkl_sparse_spmm(SPARSE_OPERATION_NON_TRANSPOSE, csrA, csrB, &result) );
memory_free:
//Release matrix handle and deallocate arrays for which we allocate memory ourselves.
if (mkl_sparse_destroy(csrA) != SPARSE_STATUS_SUCCESS) status = 3;
if (mkl_sparse_destroy(csrB) != SPARSE_STATUS_SUCCESS) status = 3;
//Deallocate arrays for which we allocate memory ourselves.
mkl_free(A_val); mkl_free(A_col); mkl_free(A_row);
mkl_free(B_val); mkl_free(B_col); mkl_free(B_row);
return status;
}
最佳答案
这是工作代码:
/* ***************** Macro ********************* */
#define ALIGN 128
/* To avoid constantly repeating the part of code that checks different functions' status, using the below macros */
#define CHECK_SPARSE(function) do { \
if(function != SPARSE_STATUS_SUCCESS) \
{ \
status = 2; \
goto memory_free; \
} \
} while(0)
/* ****************** Main ******************** */
int main()
{
<< matrices A and B are generated using some data >>
MKL_INT stat = 0;
// This part calls the function to multiply matrices as I discussed.
// A x B --> csrC
sparse_matrix_t csrC = NULL;
stat = dnmm_sp_CSR_handle(CfPrime, Num_of_Buses, Num_of_Branches, CfPrime_nonzero, Yf, Num_of_Branches, Num_of_Buses, Yf_nonzero, &csrC);
printf("\nstat = %i", stat);
// Now I convert the csrC to 4-array version of CSR.
MKL_INT rows, cols;
sparse_index_base_t indexing = 0;
MKL_INT *columns_C = NULL, *pointerB_C = NULL, *pointerE_C = NULL;
MKL_Complex16 *values_C = NULL;
mkl_sparse_z_export_csr(csrC, &indexing, &rows, &cols, &pointerB_C, &pointerE_C, &columns_C, &values_C);
// Print the number of rows and columns of converted matrix (which are incorrect sizes)
printf("\nrows = %i , cols = %i", rows, cols);
}
/* ****************** Function ******************** */
// This function receives two dense matrice, convert them to sparse CSR format, multiply them, and returns the result in CSR handle
int dnmm_sp_CSR_handle(MKL_Complex16 *A, MKL_INT A_rownum, MKL_INT A_colnum, MKL_INT A_nnz, MKL_Complex16 *B, MKL_INT B_rownum, MKL_INT B_colnum, MKL_INT B_nnz, sparse_matrix_t *result) {
// A : Matrix A
// A_rownum : Number of rows in matrix A
// A_colnum : Number of columns in matrix A
// A_nnz : Number of nonzero elements in matrix A
// B : Matrix B
// B_rownum : Number of rows in matrix B
// B_colnum : Number of columns in matrix B
// B_nnz : Number of nonzero elements in matrix B
// result : return CSR handle for A x B
MKL_INT job[8];
job[0] = 0; // the rectangular matrix A is converted to the CSR format;
job[1] = 0; // zero-based indexing for the rectangular matrix A is used;
job[2] = 0; // zero-based indexing for the matrix in CSR format is used;
job[3] = 2; // whole matrix
//job[4] // maximum number of the non-zero elements allowed if job[0] = 0
job[5] = 5; // If job[5]>0, arrays acsr, ia, ja are generated for the output storage. If job[5]=0, only array ia is generated for the output storage.
MKL_INT info = 0; // If info = 0, execution of mkl_zdnscsr was successful.
MKL_INT status = 1; // return this value to check the execution status
//(1 : successfull, 2: error in sparse functions, 3: error in deallocating memory)
MKL_Complex16 *A_val = (MKL_Complex16 *)mkl_malloc(A_nnz * sizeof(MKL_Complex16), ALIGN);
MKL_INT *A_col = (MKL_INT *)mkl_malloc(A_nnz * sizeof(MKL_INT), ALIGN);
MKL_INT *A_row = (MKL_INT *)mkl_malloc( (A_rownum + 1) * sizeof(MKL_INT), ALIGN); // +1 is because we are using 3-aaray variation
job[4] = A_nnz;
mkl_zdnscsr(job, &A_rownum, &A_colnum, A, &A_colnum, A_val, A_col, A_row, &info);
MKL_Complex16 *B_val = (MKL_Complex16 *)mkl_malloc(B_nnz * sizeof(MKL_Complex16), ALIGN);
MKL_INT *B_col = (MKL_INT *)mkl_malloc(B_nnz * sizeof(MKL_INT), ALIGN);
MKL_INT *B_row = (MKL_INT *)mkl_malloc((B_rownum + 1) * sizeof(MKL_INT), ALIGN); // +1 is because we are using 3-aaray variation
job[4] = B_nnz;
mkl_zdnscsr(job, &B_rownum, &B_colnum, B, &B_colnum, B_val, B_col, B_row, &info);
sparse_matrix_t csrA = NULL, csrB = NULL;
CHECK_SPARSE( mkl_sparse_z_create_csr(&csrA, SPARSE_INDEX_BASE_ZERO, A_rownum, A_colnum, A_row, A_row + 1, A_col, A_val) );
CHECK_SPARSE( mkl_sparse_z_create_csr(&csrB, SPARSE_INDEX_BASE_ZERO, B_rownum, B_colnum, B_row, B_row + 1, B_col, B_val) );
CHECK_SPARSE( mkl_sparse_spmm(SPARSE_OPERATION_NON_TRANSPOSE, csrA, csrB, result) );
memory_free:
//Release matrix handle and deallocate arrays for which we allocate memory ourselves.
if (mkl_sparse_destroy(csrA) != SPARSE_STATUS_SUCCESS) status = 3;
if (mkl_sparse_destroy(csrB) != SPARSE_STATUS_SUCCESS) status = 3;
//Deallocate arrays for which we allocate memory ourselves.
mkl_free(A_val); mkl_free(A_col); mkl_free(A_row);
mkl_free(B_val); mkl_free(B_col); mkl_free(B_row);
return status;
}
关于c - 编写函数以使用英特尔 MKL 库进行稀疏矩阵乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48819083/
如果矩阵A在X中,矩阵B在Y中。 进行乘法运算只是 Z = X*Y。正确假设两个数组的大小相同。 如何使用 for 循环计算它? 最佳答案 ja72 的anwser 是错误的,请查看我在其下的评论以了
我有一个 C 程序,它有 n 次乘法(单次乘法和 n 次迭代),我发现另一个逻辑有 n/2 次迭代(1 次乘法 + 2 次加法)。我知道两者都是 O(n) 的复杂性。但就 CPU 周期而言。哪个更快?
我有一个矩阵x: x <- matrix(1:8, nrow = 2, ncol = 4, byrow = 2) # [,1] [,2] [,3] [,4] #[1,] 1 2 3
我有一个矩阵x: x <- matrix(1:8, nrow = 2, ncol = 4, byrow = 2) # [,1] [,2] [,3] [,4] #[1,] 1 2 3
我正在创建一个基于电影 InTime 的 Minecraft 插件,并尝试创建代码,在玩家死亡时玩家将失去 25% 的时间。 当前代码是: String minus = itapi.getTimeSt
我正在尝试将 2 个矩阵与重载的 * 运算符相乘并打印结果。虽然看起来我不能为重载函数提供超过 1 个参数。如何将这两个矩阵传递给重载函数?请在下面查看我的实现。 #include #include
为什么在 Java 中使用 .*?例如 double probability = 1.*count/numdata; 给出相同的输出: double probability = count/numda
如果我尝试将两个值与单位相乘,则会出现意外错误。 $test: 10px; .testing{ width: $test * $test; } result: 100px*px isn't a v
我正在尝试计算库存中所有产品的总值(value)。表中的每种产品都有价格和数量。因此,我需要将每种产品的价格乘以数量,然后将所有这些加在一起以获得所有产品的总计。根据上一个问题,我现在可以使用 MyS
我正在尝试计算库存中所有产品的总值(value)。表中的每种产品都有价格和数量。因此,我需要将每种产品的价格乘以数量,然后将所有这些加在一起以获得所有产品的总计。根据上一个问题,我现在可以使用 MyS
大家好,我有以下代码行 solution first = mylist.remove((int)(Math.random() * mylist)); 这给了我一个错误说明 The operator *
我必须做很多乘法运算。如果我考虑效率,那么我应该使用位运算而不是常规的 * 运算吗?如果有差异如何进行位运算?提前致谢.. 最佳答案 不,您应该使用乘法运算符,让优化编译器决定如何最快地完成它。 您会
两个 n 位数字 A 和 B 的乘法可以理解为移位的总和: (A << i1) + (A << i2) + ... 其中 i1, i2, ... 是 B 中设置为 1 的位数。 现在让我们用 OR
我想使用 cuda 6 进行 bool 乘法,但我无法以正确的方式做到这一点。B 是一个 bool 对称矩阵,我必须进行 B^n bool 乘法。 我的 C++ 代码是: for (m=0; m
我正在编写一个定点类,但遇到了一些问题...乘法、除法部分,我不确定如何模拟。我对部门运算符(operator)进行了非常粗暴的尝试,但我确信这是错误的。到目前为止,它是这样的: class Fixe
我有TABLE_A我需要创建 TABLE_A_FINAL 规则: 在TABLE_A_FINAL中我们有包含 ID_C 的所有可能组合的行如果在 TABLE_A与 ID_C 的组合相同我们乘以 WEIG
这个问题在这里已经有了答案: Simple way to repeat a string (32 个答案) 关闭 6 年前。 我有一个任务是重复字符乘以它例如用户应该写重复输入 3 R 输出的字母和
我最近学习了C++的基础知识。我发现了一些我不明白的东西。这是让我有点困惑的程序。 #include using namespace std; int main()
我有两个列表: list_a = list_b = list(范围(2, 6)) final_list = [] 我想知道如何将两个列表中的所有值相乘。我希望我的 final_list 包含 [2*2
如何修改此代码以适用于任何基数? (二进制、十六进制、基数 10 等) int mult(int a, int b, int base){ if((a<=base)||(b<=base)){
我是一名优秀的程序员,十分优秀!