Skip to content

Instantly share code, notes, and snippets.

@v0dro
Created September 18, 2018 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save v0dro/9c6d636d61cce8d10554b9ebe190407f to your computer and use it in GitHub Desktop.
Save v0dro/9c6d636d61cce8d10554b9ebe190407f to your computer and use it in GitHub Desktop.
Failing code for SLATE
#include "slate_Matrix.hh"
int main(int argc, char **argv)
{
MPI_Init(&argc, &argv);
int rank, size;
int N = 16;
int NB = 4;
int P = 2;
int Q = 2;
slate::Matrix<double> A(N, N, NB, P, Q, MPI_COMM_WORLD);
MPI_Finalize();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment