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

fix for solver when N > M

parent 1473f57d
No related branches found
No related tags found
No related merge requests found
Pipeline #43528 passed
......@@ -215,7 +215,7 @@ class MPI_Trainer: public Trainer {
void solve() {
if (PHI_cols>PHI_rows) {
throw std::runtime_error("MPI solver requires M > N")
throw std::runtime_error("MPI solver requires M > N");
}
// Descriptors for scalaPACK
......
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