Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Use size of array on gettransferhandle call
Browse files Browse the repository at this point in the history
  • Loading branch information
meahoibm committed Nov 13, 2019
1 parent 9882b95 commit ce13454
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bb/tests/lsf/basic.robot
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ LSF get handle create performance multi node iterative scale
bsub&wait ${jsrun} ${WORKDIR}/bb/tests/bin/test_handle_perf 4096


LSF get handle create performance multi node
LSF get handle spanner multi node
[Tags] lsf
[Timeout] 20 minutes
Using SSD 512
Expand Down
2 changes: 1 addition & 1 deletion bb/tests/src/test_spanner_perf.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ int main(int argc, char** argv)
start = MPI_Wtime();
for(x=0; x<maxiterations; x++)
{
rc = BB_GetTransferHandle( x, 1, contribListArray, &thandle);
rc = BB_GetTransferHandle( x, size, contribListArray, &thandle);
check(rc);
}
MPI_Barrier(MPI_COMM_WORLD);
Expand Down

0 comments on commit ce13454

Please sign in to comment.