From ef74d1b4c85239960b204f2f97158a73a3b25d57 Mon Sep 17 00:00:00 2001 From: Carlos Rolo <3799585+cjrolo@users.noreply.github.com> Date: Tue, 12 Nov 2024 09:13:24 +0000 Subject: [PATCH] Fixed name typo added iowait.csv fixed getting-started.md --- atsc/demo/run_demo.sh | 2 +- atsc/demo/{run_demo csv.sh => run_demo_csv.sh} | 5 +++-- atsc/tests/csv/iowait.csv | 2 +- docs/getting-started.md | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) rename atsc/demo/{run_demo csv.sh => run_demo_csv.sh} (96%) diff --git a/atsc/demo/run_demo.sh b/atsc/demo/run_demo.sh index 746e953..181aea6 100755 --- a/atsc/demo/run_demo.sh +++ b/atsc/demo/run_demo.sh @@ -19,7 +19,7 @@ for i in 1 3; do ../../target/debug/atsc --compressor polynomial --error $i tmp.wbro > /dev/null echo "Polynomial Size: " du -sb tmp.bro - ../../target/debug/brro-compressor -u --verbose tmp.bro > tmp_poly.txt + ../../target/debug/atsc -u --verbose tmp.bro > tmp_poly.txt # Create HTML file echo "" > $htmlfile diff --git a/atsc/demo/run_demo csv.sh b/atsc/demo/run_demo_csv.sh similarity index 96% rename from atsc/demo/run_demo csv.sh rename to atsc/demo/run_demo_csv.sh index 52c51c6..f3bac53 100755 --- a/atsc/demo/run_demo csv.sh +++ b/atsc/demo/run_demo_csv.sh @@ -11,7 +11,7 @@ for i in 1 3; do du -sb tmp.bro ../../target/debug/atsc -u --verbose tmp.bro > tmp_fft.txt cp $infilename tmp.csv - ../../target/debug/atsc --csv --compressor idw --error $i tmp.csv > /dev/null + ../../target/debug/atsc --csv --compressor idw --error $i tmp.csv > /dev/null echo "IDW Size: " du -sb tmp.bro ../../target/debug/atsc -u --verbose tmp.bro > tmp_idw.txt @@ -19,7 +19,7 @@ for i in 1 3; do ../../target/debug/atsc --csv --compressor polynomial --error $i tmp.csv > /dev/null echo "Polynomial Size: " du -sb tmp.bro - ../../target/debug/brro-compressor -u --verbose tmp.bro > tmp_poly.txt + ../../target/debug/atsc -u --verbose tmp.bro > tmp_poly.txt # Create HTML file echo "" > $htmlfile @@ -99,6 +99,7 @@ for i in 1 3; do rm tmp.csv rm tmp.bro + rm tmp.wbro rm tmp_fft.txt rm tmp_idw.txt rm tmp_poly.txt diff --git a/atsc/tests/csv/iowait.csv b/atsc/tests/csv/iowait.csv index 3414c43..bfc775d 100644 --- a/atsc/tests/csv/iowait.csv +++ b/atsc/tests/csv/iowait.csv @@ -1,4 +1,4 @@ -timestamp,value +time,value 1730419200,0.027052617340727718 1730419220,0.006666222251849876 1730419240,0.006794401413235494 diff --git a/docs/getting-started.md b/docs/getting-started.md index 613f77d..8eba513 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -25,7 +25,7 @@ How to build and/or run ATSC 5. Run it ```bash - atsc -csv + atsc --csv ``` ## Docker container @@ -39,5 +39,5 @@ WIP 3. Run it ```bash -atsc -csv +atsc --csv ```