Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / docs / source / tuto_smpi / gemm_mpi.cpp
index 950e809..c9966ac 100644 (file)
@@ -1,3 +1,8 @@
+/* Copyright (c) 2019-2022. The SimGrid Team. All rights reserved.          */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #include "stdio.h"
 #include "mpi.h"
 
@@ -73,7 +78,7 @@ int main(int argc, char* argv[])
             multiply((size/nproc)*nproc, size-1);
         }
     }
-    
+
     // MPI_Barrier(MPI_COMM_WORLD);
     // end = MPI_Wtime();
 
@@ -92,7 +97,6 @@ int main(int argc, char* argv[])
     //         msec_per_matrix_mul,
     //         flops_per_matrix_mul);
     // }
-   
 
     return 0;
 }