Created
September 18, 2018 13:12
-
-
Save v0dro/9c6d636d61cce8d10554b9ebe190407f to your computer and use it in GitHub Desktop.
Failing code for SLATE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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