Skip to content

Commit

Permalink
test: change scalapack wrappers to take enums and add scalapack names…
Browse files Browse the repository at this point in the history
…pace
  • Loading branch information
mgates3 committed Jul 7, 2024
1 parent d47e9d6 commit 0e0f8cf
Show file tree
Hide file tree
Showing 41 changed files with 721 additions and 625 deletions.
4 changes: 2 additions & 2 deletions test/matrix_utils.hh
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ public:
void ScaLAPACK_descriptor( blas_int ictxt, blas_int A_desc[9] )
{
int64_t info;
scalapack_descinit(A_desc, m, n, nb, nb, 0, 0, ictxt, mloc, &info);
slate_assert(info == 0);
scalapack::descinit( A_desc, m, n, nb, nb, 0, 0, ictxt, mloc, &info );
slate_assert( info == 0 );
}

void create_ScaLAPACK_context( blas_int* ictxt )
Expand Down
Loading

0 comments on commit 0e0f8cf

Please sign in to comment.