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

Sample github issue #13

Open
jsquyres opened this issue Jan 8, 2023 · 0 comments
Open

Sample github issue #13

jsquyres opened this issue Jan 8, 2023 · 0 comments
Labels

Comments

@jsquyres
Copy link
Owner

jsquyres commented Jan 8, 2023

What version of Open MPI are you using?

v4.1.3

How was Open MPI installed?

Git clone

If building from a git clone

$ git submodule status
 5bd97056ccd994c711fde4ac19aded8e4eac8285 3rd-party/openpmix (v1.1.3-3726-g5bd97056)
 e0076a116884c9a8bcd5fffe20be84f3564446c3 3rd-party/prrte (psrvr-v2.0.0rc1-4537-ge0076a1168)
 237ceff1a8ed996d855d69f372be9aaea44919ea config/oac (remotes/origin/HEAD)

Operating system/version

MacOS 56.78

Computer hardware

MacBook Pro

Network type

Ethernet/TCP

Details

Things don't work well. Here's a sample program:

#include "mpi.h"
#include <stdio.h>

int main(int argc, char *argv[])
{
    int rank, size, len;
    char version[MPI_MAX_LIBRARY_VERSION_STRING];

    MPI_Init(&argc, &argv);
    MPI_Comm_rank(MPI_COMM_WORLD, &rank);
    MPI_Comm_size(MPI_COMM_WORLD, &size);
    MPI_Get_library_version(version, &len);
    printf("Hello, world, I am %d of %d, (%s, %d)\n", rank, size, version, len);
    MPI_Finalize();

    return 0;
}
@jsquyres jsquyres added the bug label Jan 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant