From 58b58a13215629b164aed0515d2fdcc75cc609dd Mon Sep 17 00:00:00 2001 From: Rahul Bera Date: Wed, 18 Aug 2021 15:11:05 +0200 Subject: [PATCH 1/3] Bugfix in mega link for Radii trace with 3500M drop-point --- scripts/artifact_traces.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/artifact_traces.csv b/scripts/artifact_traces.csv index b454514..68fd4d4 100644 --- a/scripts/artifact_traces.csv +++ b/scripts/artifact_traces.csv @@ -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 From cd27c767c675837823717813ce5737228e8abd9f Mon Sep 17 00:00:00 2001 From: Rahul Bera Date: Wed, 18 Aug 2021 15:11:57 +0200 Subject: [PATCH 2/3] Added trace download summary in download_trace.pl script --- scripts/download_traces.pl | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/download_traces.pl b/scripts/download_traces.pl index 4b1414b..de81a93 100755 --- a/scripts/download_traces.pl +++ b/scripts/download_traces.pl @@ -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 }; From 668a834ee576db41f1ab06774918b366f2b78984 Mon Sep 17 00:00:00 2001 From: Rahul Bera Date: Wed, 18 Aug 2021 15:12:17 +0200 Subject: [PATCH 3/3] Minor update in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 844ebb9..2bc8285 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,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 ./build_champsim.sh multi multi no 1 ```