Skip to content

Commit

Permalink
Updates script with exact copy from Corona
Browse files Browse the repository at this point in the history
  • Loading branch information
ilumsden committed Feb 19, 2024
1 parent 7f5c13b commit e81bea5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/basic_test/flux_prod_cons.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ NREADERS=$(( $NWRITERS*$NREADERS_PER_WRITER ))

# Set LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$SPACK_VIEW/lib64:$SPACK_VIEW/lib:$A4MD_INSTALL_PREFIX/lib:$A4MD_INSTALL_PREFIX/lib64:$LD_LIBRARY_PATH
echo "Lib Path = $LD_LIBRARY_PATH"

# Set total number of DataSpaces clients
NCLIENTS=$(( $NREADERS*$NWRITERS ))
Expand Down Expand Up @@ -82,7 +83,7 @@ client_id=0
group_id=0
# Run producers and consumers
echo "-- Start producers and consumers"
for (( i=i; i<=$NWRITERS; i++ )); do
for (( i=1; i<=$NWRITERS; i++ )); do
((client_id=client_id+1))
((group_id=group_id+1))
echo "-- Start producer $i"
Expand Down

0 comments on commit e81bea5

Please sign in to comment.