Skip to content

Commit

Permalink
correct parameters to fix bug with eigh on large processor counts
Browse files Browse the repository at this point in the history
  • Loading branch information
solomonik committed Nov 9, 2023
1 parent 20e7853 commit b13c720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interface/matrix.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ namespace CTF {
dtype * d = (dtype*)CTF_int::alloc(sizeof(dtype)*n);
Timer __t("SCALAPACK_PGEIGH");
__t.start();
CTF_SCALAPACK::pgeigh('U', n, npr, npc, A, desca, d, u, desca);
CTF_SCALAPACK::pgeigh('U', n, pr, pc, A, desca, d, u, desca);
__t.stop();

int phase = D.edge_map[0].calc_phase();
Expand Down

0 comments on commit b13c720

Please sign in to comment.