Skip to content

Commit

Permalink
Merge pull request #25 from eschnett/eschnett/MPI_ERRCODES_IGNORE
Browse files Browse the repository at this point in the history
Add MPI_ERRCODES_IGNORE
  • Loading branch information
eschnett authored Feb 25, 2022
2 parents 3787b1b + eabe918 commit 5a6aa40
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors:
given-names: Erik
orcid: 0000-0002-4518-9017
title: MPItrampoline
version: v3.5.1
version: v3.6.0
doi: 10.5281/zenodo.6174408
date-released: 2022-02-24
date-released: 2022-02-25
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.12...3.20)
project(
MPItrampoline VERSION 3.5.1
MPItrampoline VERSION 3.6.0
DESCRIPTION "MPI trampoline"
HOMEPAGE_URL "https://github.com/eschnett/MPItrampoline"
LANGUAGES NONE
Expand Down
4 changes: 4 additions & 0 deletions mpi_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@

("char ***", "MPI_ARGVS_NULL"),

("int *", "MPI_ERRCODES_IGNORE"),
("int *", "MPI_UNWEIGHTED"),
("int *", "MPI_WEIGHTS_EMPTY"),

Expand All @@ -186,8 +187,11 @@

("MPI_Comm_delete_attr_function *", "MPI_COMM_NULL_DELETE_FN"),

("MPI_Copy_function *", "MPI_DUP_FN"),
("MPI_Copy_function *", "MPI_NULL_COPY_FN"),

("MPI_Datarep_conversion_function *", "MPI_CONVERSION_FN_NULL"),

# ("MPI_Datatype", "MPI_2COMPLEX"),
# ("MPI_Datatype", "MPI_2DOUBLE"),
# ("MPI_Datatype", "MPI_2DOUBLE_COMPLEX"),
Expand Down
2 changes: 1 addition & 1 deletion mpiabi.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// MPI ABI version (we use SemVer)

#define MPIABI_VERSION_MAJOR 2
#define MPIABI_VERSION_MINOR 3
#define MPIABI_VERSION_MINOR 4
#define MPIABI_VERSION_PATCH 0

// Compile-time constants
Expand Down

0 comments on commit 5a6aa40

Please sign in to comment.