Skip to content

Commit

Permalink
Fixed name typo
Browse files Browse the repository at this point in the history
added iowait.csv
fixed getting-started.md
  • Loading branch information
cjrolo committed Nov 12, 2024
1 parent 9102e26 commit ef74d1b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion atsc/demo/run_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "<!DOCTYPE html>" > $htmlfile
Expand Down
5 changes: 3 additions & 2 deletions atsc/demo/run_demo csv.sh → atsc/demo/run_demo_csv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ 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
cp $infilename tmp.csv
../../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 "<!DOCTYPE html>" > $htmlfile
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion atsc/tests/csv/iowait.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
timestamp,value
time,value
1730419200,0.027052617340727718
1730419220,0.006666222251849876
1730419240,0.006794401413235494
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ How to build and/or run ATSC
5. Run it

```bash
atsc -csv <input-file>
atsc --csv <input-file>
```

## Docker container
Expand All @@ -39,5 +39,5 @@ WIP
3. Run it

```bash
atsc -csv <input-file>
atsc --csv <input-file>
```

0 comments on commit ef74d1b

Please sign in to comment.