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

fix for solver when N > M

parent b7662140
No related branches found
No related tags found
No related merge requests found
Pipeline #43512 passed
......@@ -253,9 +253,9 @@ class MPI_Trainer: public Trainer {
}
descinit_( sol, &PHI_cols, &ione, &rnb1, &cnb1, &izero,
&izero, &context1, /*leading dimension*/&phi_rows1, &info3);
&izero, &context1, /*leading dimension*/&ione, &info3);
descinit_( sol2, &PHI_cols, &ione, &rnb2, &cnb2, &izero,
&izero, &context2, /*leading dimension*/&phi_rows2, &info4);
&izero, &context2, /*leading dimension*/&ione, &info4);
if(info3 != 0) {
printf("Error in descinit 1c, info = %d\n", info3);
......
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