We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c183724 commit 310f4dcCopy full SHA for 310f4dc
1 file changed
.github/workflows/benchmarks.yml
@@ -186,7 +186,7 @@ jobs:
186
times=()
187
for i in $(seq 1 15); do
188
ms=$( { /usr/bin/time -f "%e" pyhl run -c "print(42)" > /dev/null; } 2>&1 )
189
- ms_int=$(echo "$ms * 1000" | bc | cut -d. -f1)
+ ms_int=$(echo "$ms * 1000" | tr -d '\r' | bc | cut -d. -f1)
190
times+=($ms_int)
191
echo " run $i: ${ms_int}ms"
192
done
@@ -223,7 +223,7 @@ jobs:
223
224
for i in $(seq 1 10); do
225
ms=$( { /usr/bin/time -f "%e" pyhl run /tmp/pandas_bench.py > /dev/null; } 2>&1 )
226
227
228
229
0 commit comments