Skip to content
Snippets Groups Projects
Commit 4f59547b authored by Marcin Kirsz's avatar Marcin Kirsz
Browse files

fix for solver when N > M

parent 2faf5bc3
No related branches found
No related tags found
No related merge requests found
Pipeline #43480 passed
......@@ -217,10 +217,11 @@ class MPI_Trainer: public Trainer {
int descB[9], descB2[9];
int info, info2;
descinit_( descPHI, &PHI_rows, &PHI_cols, &rnb1, &cnb1, &izero,
&izero, &context1, /*leading dimension*/&phi_rows1, &info);
&izero, &context1, /*leading dimension*/&phi_cols1, &info);
descinit_( descPHI2, &PHI_rows, &PHI_cols, &rnb2, &cnb2, &izero,
&izero, &context2, /*leading dimension*/&phi_rows2, &info2);
&izero, &context2, /*leading dimension*/&phi_cols2, &info2);
if(info != 0) {
printf("Error in descinit 1a, info = %d\n", info);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment