summaryrefslogtreecommitdiff
path: root/test/benchmarks/src/main/scala/scala/collection/immutable/SetBenchmark.scala
blob: 93306266917ec61e4479f81d48a02a94c180ff7b (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
package scala.collection.immutable

import java.util.concurrent.TimeUnit

import org.openjdk.jmh.annotations._
import org.openjdk.jmh.infra._

@BenchmarkMode(Array(Mode.AverageTime))
@Fork(2)
@Threads(1)
@Warmup(iterations = 10)
@Measurement(iterations = 10)
@OutputTimeUnit(TimeUnit.NANOSECONDS)
@State(Scope.Benchmark)
class SetBenchmark {

  var base: Set[String] = _


  @Setup(Level.Trial) def initKeys(): Unit = {
    base = Set("a", "b", "c", "d")
  }
  
  // immutable map is implemented as EmptySet -> Set1 -> Set2 -> Set3 -> Set4 -> HashSet
  // add an extra entry to Set4 causes a lot of work, benchmark the transition
  @Benchmark def set4AddElement(bh: Blackhole): Unit = {
    bh.consume(base + "e")
  }
}