|
| 1 | +name: Bug report |
| 2 | +description: Something is not working correctly. |
| 3 | +labels: "bug" |
| 4 | + |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thank you for taking the time to submit an issue! |
| 10 | +
|
| 11 | + ## Background information |
| 12 | +
|
| 13 | + - type: input |
| 14 | + attributes: |
| 15 | + label: What version of Open MPI are you using? |
| 16 | + description: | |
| 17 | + Examples: v4.1.2, v4.0.1, git branch name and hash, etc. |
| 18 | + validations: |
| 19 | + required: true |
| 20 | + |
| 21 | + - type: input |
| 22 | + attributes: |
| 23 | + label: How was Open MPI installed? |
| 24 | + description: | |
| 25 | + Examples: from a source/distribution tarball, from a git clone, from an operating system distribution package, etc. |
| 26 | + validations: |
| 27 | + required: true |
| 28 | + |
| 29 | + - type: textarea |
| 30 | + attributes: |
| 31 | + label: If building from a git clone |
| 32 | + description: | |
| 33 | + Copy-n-paste the output from `git submodule status`. |
| 34 | + placeholder: | |
| 35 | + ``` |
| 36 | + $ git submodule status |
| 37 | + 5bd97056ccd994c711fde4ac19aded8e4eac8285 3rd-party/openpmix (v1.1.3-3726-g5bd97056) |
| 38 | + e0076a116884c9a8bcd5fffe20be84f3564446c3 3rd-party/prrte (psrvr-v2.0.0rc1-4537-ge0076a1168) |
| 39 | + 237ceff1a8ed996d855d69f372be9aaea44919ea config/oac (remotes/origin/HEAD) |
| 40 | + ``` |
| 41 | +
|
| 42 | + - type: input |
| 43 | + attributes: |
| 44 | + label: Operating system/version |
| 45 | + placeholder: ex. Ubuntu 22.04 |
| 46 | + |
| 47 | + - type: input |
| 48 | + attributes: |
| 49 | + label: Computer hardware |
| 50 | + placeholder: ex. 2xIntel core i7-1365, 32 GB RAM, 2xA100 NVIDIA GPUs |
| 51 | + |
| 52 | + - type: input |
| 53 | + attributes: |
| 54 | + label: Network type |
| 55 | + placeholder: ex. Ethernet/TCP, Ethernet/RoCE, InfiniBand, etc. |
| 56 | + |
| 57 | + - type: markdown |
| 58 | + attributes: |
| 59 | + value: | |
| 60 | + ## Details of the problem |
| 61 | +
|
| 62 | + - type: textarea |
| 63 | + attributes: |
| 64 | + label: Details |
| 65 | + description: | |
| 66 | + Please describe, **in detail**, the problem that you are having, including the behavior you expect to see, the actual behavior that you are seeing, steps to reproduce the problem, etc. It is most helpful if you can attach a small program that a developer can use to reproduce your problem. |
| 67 | + placeholder: | |
| 68 | + If you include verbatim output (or a code block), please use a GitHub Markdown block like this: |
| 69 | + ```c |
| 70 | + #include <mpi.h> |
| 71 | + int main() { |
| 72 | + // Short program that reproduces the problem |
| 73 | + } |
| 74 | + ``` |
| 75 | + validations: |
| 76 | + required: true |
0 commit comments