summaryrefslogtreecommitdiff
path: root/test/benchmarks/src/scala/collection/parallel/benchmarks/parallel_array/DiffHalf.scala
blob: 4b27569239d58687c0f6fa95829c3171ea293d2b (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
46
47
48
package scala.collection.parallel.benchmarks
package parallel_array







class DiffHalf(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 = DiffHalf
  override def repetitionsPerRun = 400
  
  val similar = {
    val p = new collection.parallel.mutable.ParArray[Cont](sz)
    for (i <- 0 until sz) p(i) = what match {
      case "seq" => arr(i).asInstanceOf[Cont]
      case "par" => pa(i)
    }
    p.drop(p.size / 2)
  }
  
  def runpar = runresult = pa.diff(similar).size
  def runseq = runresult = sequentialDiff(similar, sz).size
  override def comparisonMap = collection.Map()
  
  val corr = (a: Cont, b: Cont) => a.in == b.in
}

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