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







class Corresponds(sz: Int, p: Int, what: String)
extends Resettable[Cont](sz, p, what, (i: Int) => new Cont(i),  new Array[Any](_), classOf[Cont])
with HavingResult[Boolean] {
  def companion = Corresponds
  override def repetitionsPerRun = 400
  
  val same = {
    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
  }
  
  def runpar = runresult = pa.corresponds(same)(corr)
  def runseq = runresult = sequentialCorresponds(same, corr, sz)
  override def comparisonMap = collection.Map()
  
  val corr = (a: Cont, b: Cont) => a.in == b.in
}

object Corresponds extends Companion {
  def benchName = "corresponds";
  def apply(sz: Int, p: Int, what: String) = new Corresponds(sz, p, what)
  override def comparisons = List()
}