Skip to content

Commit

Permalink
more fixes regarding issue #28 ; added useful cmake variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Clement-Fontenaille committed Aug 2, 2022
1 parent 0f0c517 commit 17e2911
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ $ cmake -DCMAKE_INSTALL_PREFIX=/path-install/wi4mpi-%version /path/to/wi4mpi/sou
$ make -j 4 && make install
```

You may use the following environment variables to customize the configure and build steps :
WI4MPI_COMPILER=<INTEL, GNU, PGI, LLVM, ARMCLANG, FUJITSU>

WI4MPI_RELEASE=<DEBUG, RELEASE, GCC_JITI>



## Quick start

WI4MPI dedicated launcher available in /path-install/wi4mpi-%version/bin/mpirun allow an easy use of the
Expand Down
4 changes: 2 additions & 2 deletions src/interface/header/_MPC/run_mpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,8 @@ typedef enum {
} MPC_T_binding;

/** Initialization and Finalization */
#define R_MPI_T_ERR_INVALID_NAME 73 /* Name doesn't match */
#define R_MPI_T_ERR_INVALID 74 /* Generic error code for MPI_T added in MPI-3.1 */

/** Initialize the R_MPI_T environment
* @arg required The level of thread safety required
Expand All @@ -931,8 +933,6 @@ typedef enum {
int R_MPI_T_init_thread(int required, int *provided);

/** Close the R_MPI_T Context
#define R_MPI_T_ERR_INVALID_NAME 73 /* Name doesn't match */
#define R_MPI_T_ERR_INVALID 74 /* Generic error code for MPI_T added in MPI-3.1 */
* @note R_MPI_T does refcounting
* @return MPI Error
*/
Expand Down

0 comments on commit 17e2911

Please sign in to comment.