summaryrefslogtreecommitdiff
path: root/test/benchmarks/src/scala/collection/parallel/benchmarks/parallel_array/GroupBy.scala
blob: a90227a6e481ef927807180e19fe8792c67c247c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package scala.collection.parallel.benchmarks
package parallel_array



object GroupByLight extends Companion {
  def benchName = "groupby-light";
  def apply(sz: Int, parallelism: Int, what: String) = new GroupByLight(sz, parallelism, what)
  override def comparisons = List()
  override def defaultSize = 10000
  
  val fun = (a: Cont) => a.in % 32
}


class GroupByLight(sz: Int, p: Int, what: String)
extends Resettable(sz, p, what, new Cont(_), new Array[Any](_), classOf[Cont])
with HavingResult[Int] {
  def companion = GroupByLight
  runresult = -1
  
  val array = new Array[Cont](sz)
  for (i <- 0 until sz) array(i) = new Cont(i)
  
  def runpar = runresult = pa.groupBy(GroupByLight.fun).size
  def runseq = runresult = array.asInstanceOf[Array[Cont]].groupBy(GroupByLight.fun).size
  def comparisonMap = collection.Map()
}