Skip to content
Snippets Groups Projects
Commit c6faaa88 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added missing operations to MpiDefs.h

parent 4893aad8
No related branches found
No related tags found
No related merge requests found
......@@ -11,5 +11,18 @@
#pragma once
#ifndef HAVE_MPI
enum MPI_Op { MPI_SUM, MPI_MAX };
#endif
\ No newline at end of file
enum MPI_Op {
MPI_MAX,
MPI_MIN,
MPI_SUM,
MPI_PROD,
MPI_LAND,
MPI_BAND,
MPI_LOR,
MPI_BOR,
MPI_LXOR,
MPI_BXOR,
MPI_MINLOC,
MPI_MAXLOC,
};
#endif
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