Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8113703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T02:54:53+00:00 2026-06-06T02:54:53+00:00

I have a code that has some mpi api-dependent bits: #if MPIVERSION==1 … #elif

  • 0

I have a code that has some mpi api-dependent bits:

#if MPIVERSION==1
...
#elif MPIVERSION==2
...
#endif

that switches between assuming MPI-1 and MPI-2.

Is there a good way to infer a good version — particularly one that might go in the build system?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T02:54:55+00:00Added an answer on June 6, 2026 at 2:54 am

    Do what configure scripts usually do – try to compile and run a very simple test MPI code that consists of:

    #include <stdio.h>
    #include <mpi.h>
    
    int main (void)
    {
        int version, subversion;
        MPI_Get_version(&version, &subversion);
        printf("%d.%d\n", version, subversion);
        return 0;
    }
    

    Compile this code with mpicc (or whatever compiler was specified) and run it (directly and not through mpirun) during code configuration time and you will both:

    • know that the MPI compiler wrapper actually works
    • get the supported MPI standard major and minor versions

    You can do the same for Fortran projects.

    You can also try to parse mpi.h directly and search for MPI_VERSION and MPI_SUBVERSION but you might run into some non-portability issues. Besides those macros are meant to be used for conditional compilation inside the C/C++ code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some older (broken) code that has a join using a *= table1.ID
We have a system that has some Bash scripts running besides Java code. Since
I have some code that creates some span tags and each span has its
I'm working on some Clojure code that has some circular dependencies between different namespaces
I have some code that has generic references in it and my IBM RAD
I have a WPF window( using c# as code behind) that has some text
I have some code that has the property display-inline . Due to this it
I have some code that has a dynamic-class system in C++ that has a
I have some code that has to compile for multiple platforms. The following will
So I have some code that has way too many of these in it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.