summaryrefslogtreecommitdiff
path: root/test/benchmarking/ParVector-reduce.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/benchmarking/ParVector-reduce.scala')
-rw-r--r--test/benchmarking/ParVector-reduce.scala33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/benchmarking/ParVector-reduce.scala b/test/benchmarking/ParVector-reduce.scala
deleted file mode 100644
index 2b4594e997..0000000000
--- a/test/benchmarking/ParVector-reduce.scala
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-import collection.parallel.immutable.ParVector
-
-
-
-object Reduce extends testing.Benchmark {
- val length = sys.props("length").toInt
- val par = sys.props("par").toInt
- val parvector = ParVector((0 until length): _*)
-
- parvector.tasksupport = new collection.parallel.ForkJoinTaskSupport(new scala.concurrent.forkjoin.ForkJoinPool(par))
-
- def run = {
- parvector reduce {
- (a, b) => a + b
- }
- }
-}
-
-
-object ReduceSeq extends testing.Benchmark {
- val length = sys.props("length").toInt
- val vector = collection.immutable.Vector((0 until length): _*)
-
- def run = {
- vector reduce {
- (a, b) => a + b
- }
- }
-}
-