Skip to content

Commit

Permalink
Fix test script for new window averaging option handling
Browse files Browse the repository at this point in the history
  • Loading branch information
lczech committed Aug 1, 2024
1 parent 079c128 commit c24a14a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/grenedalf/fst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ GRENEDALF="${SCRIPT_DIR}/../../bin/grenedalf"
mkdir -p fst
mkdir -p logs

# Special case for our unbiased methods, where we need to set the window averaging policy
if [[ "$method" == unbiased-* ]]; then
method="${method} --window-average-policy window-length"
fi

echo "Start `date`"
START=$(date +%s.%N)

Expand All @@ -23,7 +28,6 @@ ${GRENEDALF} fst \
--window-interval-width ${windowsize} \
--pool-sizes ${poolsizes} \
--method ${method} \
--window-average-policy "window-length" \
--no-extra-columns \
--out-dir "fst" \
--file-suffix "-${outid}" \
Expand Down

0 comments on commit c24a14a

Please sign in to comment.