Reorganisation of the source tree
[ghc-hetmet.git] / ghc / utils / parallel / avg-RTS.pl
diff --git a/ghc/utils/parallel/avg-RTS.pl b/ghc/utils/parallel/avg-RTS.pl
deleted file mode 100644 (file)
index 4f25d55..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/local/bin/perl
-
-$n=0;
-$sum=0;
-$last=0;
-while (<>) {
-    next unless /^\d+/;
-    @c = split;
-    $sum += $c[0];
-    $last = $c[0];
-    $n++;
-}
-
-print "Average Runtimes: n=$n; sum=$sum; avg=" . ($sum/$n) . "; max=$last\n";
-