-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathJvmBenchmarkAnnotations.kt
34 lines (21 loc) · 1.3 KB
/
JvmBenchmarkAnnotations.kt
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
package kotlinx.benchmark
actual typealias Scope = org.openjdk.jmh.annotations.Scope
actual typealias State = org.openjdk.jmh.annotations.State
@Suppress("ACTUAL_ANNOTATION_CONFLICTING_DEFAULT_ARGUMENT_VALUE")
actual typealias Setup = org.openjdk.jmh.annotations.Setup
actual typealias Level = org.openjdk.jmh.annotations.Level
@Suppress("ACTUAL_ANNOTATION_CONFLICTING_DEFAULT_ARGUMENT_VALUE")
actual typealias TearDown = org.openjdk.jmh.annotations.TearDown
actual typealias Benchmark = org.openjdk.jmh.annotations.Benchmark
@Suppress("NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS")
actual typealias BenchmarkMode = org.openjdk.jmh.annotations.BenchmarkMode
actual typealias Mode = org.openjdk.jmh.annotations.Mode
actual typealias OutputTimeUnit = org.openjdk.jmh.annotations.OutputTimeUnit
@Suppress("ACTUAL_WITHOUT_EXPECT")
actual typealias BenchmarkTimeUnit = java.util.concurrent.TimeUnit
@Suppress("ACTUAL_ANNOTATION_CONFLICTING_DEFAULT_ARGUMENT_VALUE", "NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS")
actual typealias Warmup = org.openjdk.jmh.annotations.Warmup
@Suppress("ACTUAL_ANNOTATION_CONFLICTING_DEFAULT_ARGUMENT_VALUE")
actual typealias Measurement = org.openjdk.jmh.annotations.Measurement
@Suppress("NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS")
actual typealias Param = org.openjdk.jmh.annotations.Param