Skip to content

Commit

Permalink
scalapack: change wrappers to take enums and add scalapack namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Jul 9, 2024
1 parent d47e9d6 commit 4a818d2
Show file tree
Hide file tree
Showing 41 changed files with 737 additions and 637 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 4a818d2

Please sign in to comment.