Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more fixes regarding issue #28 ; added useful cmake variables #30

Merged
merged 1 commit into from
Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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