Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
construct==2.9.33
pyftdi~=0.13.4
pyftdi==0.13.*
pylibftdi
pyserial
requests~=2.8.1
numpy~=1.16.2
requests==2.20.*
numpy==1.16.*
pybase64
ujson
2 changes: 1 addition & 1 deletion test_data/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo "Python" $time_py
time_hs=$(TIMEFORMAT="%R"; { time $1/sbp2json < $TESTDATA_ROOT/long.sbp > $TESTDATA_ROOT/long_hask.json; } 2>&1)
echo "Haskell" $time_hs

threshold=1.4
threshold=1.5
perf_diff=$(echo "$time_py / $time_hs" | bc -l)

if (( $(echo "$perf_diff > $threshold" | bc -l) )); then
Expand Down