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







class SegmentLength(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 = SegmentLength
  override def repetitionsPerRun = 400
  
  def runpar = runresult = pa.segmentLength(SegmentLength.pred2, 0)
  def runseq = runresult = sequentialSegmentLength(SegmentLength.pred2, 0, sz)
  override def comparisonMap = collection.Map()
}

object SegmentLength extends Companion {
  def benchName = "segment-length";
  def apply(sz: Int, p: Int, what: String) = new SegmentLength(sz, p, what)
  override def comparisons = List()
  
  val pred = (c: Cont) => {
    var in = c.in
    var i = 2
    while (i < 5) {
      if (in % i == 0) in = 0
      i += 1
    }
    c.in >= 0 || in == 0
  }
  val pred2 = (c: Cont) => c.in >= 0
}