Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Another easy test from McMini
[simgrid.git] / docs / source / tuto_smpi / gemm_mpi.cpp
index c9966ac94452458048c84574be08e93e06afd613..ab9920b6c895b6cb97a6cc4656ee3a6b08fb8d3e 100644 (file)
@@ -1,10 +1,10 @@
-/* Copyright (c) 2019-2022. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2019-2023. 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"
+#include <mpi.h>
+#include <stdio.h>
 
 const int size = 3000;
 
@@ -27,7 +27,7 @@ int main(int argc, char* argv[])
 {
     int rank, nproc;
     int istart, iend;
-    double start, end;
+    // double start, end;
 
     MPI_Init(&argc, &argv);
     MPI_Comm_size(MPI_COMM_WORLD, &nproc);