Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/CMU-SAFARI/Pythia
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulbera committed Aug 18, 2021
2 parents 44ea282 + 668a834 commit 5b43b64
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ The infrastructure has been tested with the following system configuration:
4. Build Pythia for single/multi core using build script. This should create the executable inside `bin` directory.

```bash
cd $PYTHIA_HOME
# ./build_champsim.sh <l1_pref> <l2_pref> <llc_pref> <ncores>
./build_champsim.sh multi multi no 1
```
Expand Down
2 changes: 1 addition & 1 deletion scripts/artifact_traces.csv
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_18000M.length_250M.champsimtrace.xz
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_24500M.length_250M.champsimtrace.xz, https://mega.nz/file/wllE3RDJ#nVavqVpquzLo263ZL5KD-lTlsgJEAhQRCqDSIJ121QM
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_25000M.length_250M.champsimtrace.xz, https://mega.nz/file/cp9gnBRT#Xw58Oxqgm3hAXlYLEvKl0aRDuSFRJPQyMGPRSCYAxSw
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_32000M.length_250M.champsimtrace.xz, https://mega.nz/file/Ip9QUZqZ#57VhBRlAJ2ukHeEuZY8Q-udJJGP_5xIX-Oci3l-J7yI
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_3500M.length_250M.champsimtrace.xz, https://mega.nz/file/Ip9QUZqZ#57VhBRlAJ2ukHeEuZY8Q-udJJGP_5xIX-Oci3l-J7yI
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_3500M.length_250M.champsimtrace.xz, https://mega.nz/file/8ttAwboA#lOl-AfhzaFoWegvcqIz_go8gxZd97OqYslgkGat595c
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_36000M.length_250M.champsimtrace.xz, https://mega.nz/file/58t2BLID#ZpWwqBSt3-7CpNdtlDvltN-lHn6-Yi6lfy9f6cyU0bc
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_5000M.length_250M.champsimtrace.xz, https://mega.nz/file/Qo80BZoR#kZfCskaCldC5q7AEvubFftdNf0vG5SOF3WuLKJybElw
ligra_Radii.com-lj.ungraph.gcc_6.3.0_O3.drop_750M.length_250M.champsimtrace.xz, https://mega.nz/file/hw8E2ZJJ#nRYxr8jIJGTd27qcsHfpaTNls_J-2tJdX7uL8qtSMik
Expand Down
11 changes: 11 additions & 0 deletions scripts/download_traces.pl
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,15 @@
#print("$cmd\n");
}

my $total_traces = `wc -l $input_file | awk '{print \$1}'`;
my $downloaded = `ls -1 $dir | wc -l`;
chomp($total_traces);
chomp($downloaded);

print "\n";
print "================================\n";
print "Trace downloading completed\n";
print "Downloaded $downloaded/$total_traces traces\n";
print "================================\n";

sub trim { my $s = shift; $s =~ s/^\s+|\s+$//g; return $s };

0 comments on commit 5b43b64

Please sign in to comment.