You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
General information about contributing to the Open MPI project can be found at the [Contributing to Open MPI webpage](https://www.open-mpi.org/community/contribute/).
9
-
The instructions below are specifically for opening issues and pull requests against Open MPI.
8
+
General information about contributing to the Open MPI project can be
If you have not already done so, please ensure that:
36
-
37
-
1. Every commit contains exactly the "Signed-off-by" token. You can
38
-
add this token via `git commit -s`.
39
-
1. The email address after "Signed-off-by" must match the Git commit
40
-
email address.
41
-
42
-
## **Did you find a bug?**
43
-
44
-
***Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/open-mpi/ompi/issues).
45
-
46
-
* If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/open-mpi/ompi/issues/new).
47
-
48
-
* For more detailed information on submitting a bug report and creating an issue, visit our [Bug Tracking webpage](https://www.open-mpi.org/community/help/bugs.php).
49
-
50
-
## **Did you write a patch that fixes a bug?**
51
-
52
-
* Open a new GitHub pull request with the patch.
53
-
54
-
* Ensure the PR description clearly describes the problem and solution. If there is an existing GitHub issue open describing this bug, please include it in the description so we can close it.
55
-
56
-
* Before submitting, please read the [Contributing to the Open MPI Project FAQ](https://www.open-mpi.org/faq/?category=contributing) web page, and the [SubmittingPullRequests](https://github.com/open-mpi/ompi/wiki/SubmittingPullRequests) wiki page. In particular, note that all Git commits contributed to Open MPI require a "Signed-off-by" line.
57
-
58
-
## **Do you intend to add a new feature or change an existing one?**
59
-
60
-
* Suggest your change on the [devel mail list](https://www.open-mpi.org/community/lists/ompi.php) and start writing code. The [developer level technical information on the internals of Open MPI](https://www.open-mpi.org/faq/?category=developers) may also be useful for large scale features.
61
-
62
-
* Do not open an issue on GitHub until you have collected positive feedback about the change. GitHub issues are primarily intended for bug reports and fixes.
63
-
64
-
## **Do you have questions about the source code?**
65
-
66
-
* First checkout the [developer level technical information on the internals of Open MPI](https://www.open-mpi.org/faq/?category=developers). A paper describing the [multi-component architecture](https://www.open-mpi.org/papers/ics-2004/ics-2004.pdf) of Open MPI may also be helpful. The [devel mail list](https://www.open-mpi.org/community/lists/ompi.php) is a good place to post questions about the source code as well.
67
-
68
-
## Style
69
-
70
-
There are a small number of style rules for Open MPI:
71
-
72
-
1. For all code:
73
-
* 4 space tabs. No more, no less.
74
-
* No tab characters *at all*. 2 indentations are 8 spaces — not a tab.
75
-
* m4 code is a bit weird in terms of indentation: we don't have a
76
-
good, consistent indentation style in our existing code. But
77
-
still: no tab characters at all.
78
-
1. For C code:
79
-
* We prefer if all blocks are enclosed in `{}` (even 1-line
80
-
blocks).
81
-
* We prefer that if you are testing equality with a constant, put
82
-
the constant on the *left* of the `==`. E.g., `if (NULL ==
83
-
ptr)`.
84
-
* If there are no parameters to a C function, declare it with
85
-
`(void)` (vs. `()`).
86
-
87
-
That's about it. Thank you!
88
-
89
-
— The Open MPI Team
16
+
Please see the [Contributing
17
+
guidelines](https://docs.open-mpi.org/en/main/contributing.html) for
0 commit comments