llnl / llnl/mpiGraph

Found Bug: Passing false request_array address

Open
#1 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Perl
Stars
29
Forks
12
PR merge metrics
No merged PRs in 30d

Description

191 if (!flag_sends) {
192 MPI_Testall((k+1)/2, &request_array[(k+1)/2-1], &flag_sends, &status_array[(k+1)/2-1]);
193 if (flag_sends) { __TIME_END_SEND__; }
194 }

should be
192 MPI_Testall((k+1)/2, &request_array[(k+1)/2], &flag_sends, &status_array[(k+1)/2]);

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Locate the source file containing lines 191–193 and inspect the MPI_Testall call and its request_array and status_array indexing. Correct the address offsets as described, then run the repository's MPI benchmark or validation to confirm the call behaves correctly.

Written by the indexing model from the issue text.

Assessment

Tech stack
c
Domain
distributed-systems
Issue type
Bug
Difficulty
1/5
Estimated time
Under an hour
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.