summaryrefslogtreecommitdiff
path: root/test/benchmarks/src/scala/collection/parallel/benchmarks/parallel_array/RemoveDuplicates.scala
blob: feb1bd9466630cc8798fca337d7f000dd4949dc4 (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
package scala.collection.parallel.benchmarks
package parallel_array







class RemoveDuplicates(sz: Int, p: Int, what: String)
extends Resettable[Cont](sz, p, what, (i: Int) => new Cont(i),  new Array[Any](_), classOf[Cont])
with HavingResult[Int] {
  def companion = RemoveDuplicates
  override def repetitionsPerRun = 400
  
  def runpar = runresult = pa.distinct.size
  def runseq = runresult = sequentialRemoveDuplicates(size).size
  override def comparisonMap = collection.Map()
}

object RemoveDuplicates extends Companion {
  def benchName = "remove-duplicates";
  def apply(sz: Int, p: Int, what: String) = new RemoveDuplicates(sz, p, what)
  override def comparisons = List()
  override def defaultSize = 10000
}