summaryrefslogtreecommitdiff
path: root/test/benchmark/sources/sort2
diff options
context:
space:
mode:
Diffstat (limited to 'test/benchmark/sources/sort2')
-rw-r--r--test/benchmark/sources/sort2/build.xml36
-rw-r--r--test/benchmark/sources/sort2/sort2.scala35
2 files changed, 0 insertions, 71 deletions
diff --git a/test/benchmark/sources/sort2/build.xml b/test/benchmark/sources/sort2/build.xml
deleted file mode 100644
index 067b98afb6..0000000000
--- a/test/benchmark/sources/sort2/build.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<project name="sort2" default="run">
- <import file="../../predef.xml"/>
-
- <target name="init">
- <mkdir dir="${benchmark.classes.dir}/${ant.project.name}"/>
- </target>
-
-
- <!-- Compile the sort2 benchmark without optimizations -->
- <target name="compile-noopt"
- description="Compile the ${ant.project.name} benchmark with no optimizations">
- <compile-benchmark files="${benchmark.sources.dir}/${ant.project.name}/sort2.scala"
- destination="${benchmark.classes.dir}/${ant.project.name}/noopt"/>
- </target>
-
- <!-- Compile the sort2 benchmark with optimizations -->
- <target name="compile-opt"
- description="Compile the ${ant.project.name} benchmark with opt">
- <compile-benchmark files="${benchmark.sources.dir}/${ant.project.name}/sort2.scala"
- destination="${benchmark.classes.dir}/${ant.project.name}/opt"
- additionalArgs="-separate:no -Xinline"/>
- </target>
-
-
- <target name="run" depends="init,compile-noopt,compile-opt"
- description="Run this benchmark">
- <run-benchmark location="${benchmark.classes.dir}/${ant.project.name}/noopt"/>
- <run-benchmark location="${benchmark.classes.dir}/${ant.project.name}/opt"/>
- </target>
-
- <target name="clean.benchmark"
- description="Clean the object files for ${ant.project.name} benchmark">
- <delete dir="${benchmark.classes.dir}/${ant.project.name}"/>
- </target>
-
-</project> \ No newline at end of file
diff --git a/test/benchmark/sources/sort2/sort2.scala b/test/benchmark/sources/sort2/sort2.scala
deleted file mode 100644
index 6c024eab7a..0000000000
--- a/test/benchmark/sources/sort2/sort2.scala
+++ /dev/null
@@ -1,35 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala benchmark suite **
-** / __/ __// _ | / / / _ | (c) 2003-2004, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-** $Id$
-\* */
-
-package benchmarks;
-
-/** Quick-sort a list of integers, version 2. Taken from the
- Scala distribution examples. */
-class Sorter {
-
- def sort(a: List[Int]): List[Int] = {
- if (a.length < 2)
- a
- else {
- val pivot = a(a.length / 2);
- def lePivot(x: Int) = x < pivot;
- def gtPivot(x: Int) = x > pivot;
- def eqPivot(x: Int) = x == pivot;
- sort(a filter lePivot)
- ::: sort(a filter eqPivot)
- ::: sort(a filter gtPivot)
- }
- }
-
-}
-
-object sort2 extends Sorter with scala.testing.Benchmark {
- def run: Unit = sort(List.range(1,10000));
-
-}