Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c0ce2480ed039e5ba1e48faa0972b68dd2e1014c
[simgrid.git] / examples / smpi / MM / Summa.h
1 /* Copyright (c) 2012, 2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <mpi.h>
8 double Summa(
9                      double *a, double *b, double *c,
10                      size_t lda, size_t ldb, size_t ldc,
11                      size_t m, size_t k_a, size_t k_b, size_t n,
12                      size_t Block_size, size_t start, size_t end,
13                      size_t row, size_t col, size_t size_row, size_t size_col,
14                      double *a_local, double *b_local,
15                      MPI_Datatype Block_a, MPI_Datatype Block_a_local,
16                      MPI_Datatype Block_b,
17                      MPI_Comm row_comm, MPI_Comm col_comm, int subs);
18