Skip to content
Snippets Groups Projects
Commit 1e5061c9 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Minimize number of headers included for older MPIs.

parent 5519f12f
No related branches found
No related tags found
No related merge requests found
......@@ -47,26 +47,29 @@
#include <config.h>
#endif
#include <mpi.h>
#include "xt_exchanger_neigh_alltoall.h"
#include "core/core.h"
#if MPI_VERSION >= 3
#include <assert.h>
#include <string.h>
#include <mpi.h>
#include "core/ppm_xfuncs.h"
#include "xt/xt_mpi.h"
#include "xt_mpi_internal.h"
#include "xt_redist_internal.h"
#include "xt_exchanger_neigh_alltoall.h"
#include "xt/xt_xmap.h"
#include "xt/xt_idxlist.h"
#include "xt/xt_request.h"
#include "xt/xt_request_msgs.h"
#include "core/core.h"
#include "xt_exchanger.h"
#define MAX(a,b) ((a) >= (b) ? (a) : (b))
#if MPI_VERSION >= 3
static Xt_exchanger
xt_exchanger_neigh_alltoall_copy(Xt_exchanger exchanger,
MPI_Comm newComm, int new_tag_offset);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment