-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle.kts
323 lines (284 loc) · 11.5 KB
/
build.gradle.kts
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
@file:OptIn(KotlinxBenchmarkPluginInternalApi::class, ExperimentalWasmDsl::class)
import kotlinx.benchmark.gradle.*
import de.undercouch.gradle.tasks.download.Download
import kotlinx.benchmark.gradle.internal.KotlinxBenchmarkPluginInternalApi
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
import org.jetbrains.kotlin.gradle.dsl.KotlinJsCompile
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinJsCompilation
import org.jetbrains.kotlin.gradle.targets.js.binaryen.BinaryenRootEnvSpec
import org.jetbrains.kotlin.gradle.targets.js.dsl.KotlinJsBinaryMode
import org.jetbrains.kotlin.gradle.targets.js.dsl.KotlinWasmSubTargetContainerDsl
import org.jetbrains.kotlin.gradle.targets.js.ir.JsIrBinary
import org.jetbrains.kotlin.gradle.targets.js.d8.D8Plugin
import org.jetbrains.kotlin.gradle.targets.js.binaryen.BinaryenRootPlugin
import org.jetbrains.kotlin.gradle.targets.js.d8.D8EnvSpec
import org.jetbrains.kotlin.gradle.targets.js.ir.KotlinJsIrTarget
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsEnvSpec
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsPlugin
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension
buildscript {
repositories {
gradlePluginPortal()
maven(uri("./kotlin-compiler"))
}
val kotlin_version: String by project
dependencies {
classpath(files("./kotlinx-benchmarks/kotlinx-benchmark-plugin-0.5.0.jar"))
classpath("com.squareup:kotlinpoet:1.3.0")
classpath("org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlin_version")
}
}
plugins {
kotlin("multiplatform")
id("de.undercouch.download") version "5.5.0"
}
apply {
plugin<BenchmarksPlugin>()
}
apply<NodeJsPlugin>()
the<NodeJsEnvSpec>().apply {
version.set("23.6.0")
}
apply<BinaryenRootPlugin>()
the<BinaryenRootEnvSpec>().version.set("121")
apply<D8Plugin>()
the<D8EnvSpec>().version.set("13.4.61")
allprojects.forEach {
it.tasks.withType<org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinNpmInstallTask>().configureEach {
args.add("--ignore-engines")
}
}
repositories {
mavenCentral()
maven(uri("./kotlin-compiler"))
maven(uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/"))
}
kotlin {
js {
this as KotlinJsIrTarget
//d8()
nodejs()
}
wasmJs("wasm") {
d8()
//nodejs()
}
sourceSets {
commonMain {
dependencies {
implementation(files("./kotlinx-benchmarks/kotlinx-benchmark-runtime-0.5.0.jar"))
}
}
val wasmMain by getting {
dependencies {
implementation(files("./kotlinx-benchmarks/kotlinx-benchmark-runtime-wasm-js-0.5.0.klib"))
}
}
val jsMain by getting {
dependencies {
implementation(files("./kotlinx-benchmarks/kotlinx-benchmark-runtime-js-0.5.0.klib"))
}
}
}
}
val reportAllTargetsToTC = tasks.register("reportAllTargetsToTC")
benchmark {
configurations {
with(create("fastMacro")) {
iterations = 5
warmups = 5
iterationTime = 50
iterationTimeUnit = "millis"
outputTimeUnit = "millis"
reportFormat = "json"
mode = "avgt"
advanced("jsUseBridge", true)
includes.add("macroBenchmarks.MacroBenchmarksFast")
}
with(create("slowMacro")) {
iterations = 1
warmups = 5
iterationTime = 1
iterationTimeUnit = "nanos"
outputTimeUnit = "millis"
reportFormat = "json"
mode = "avgt"
advanced("jsUseBridge", true)
includes.add("macroBenchmarks.MacroBenchmarksSlow")
}
val slowMicroBenchmarks = listOf(
"microBenchmarks.StringBenchmark.summarizeSplittedCsv",
"microBenchmarks.PrimeListBenchmark.calcEratosthenes",
"microBenchmarks.FibonacciBenchmark.calcSquare",
"microBenchmarks.superslow.GraphSolverBenchmark.solve",
"microBenchmarks.LinkedListWithAtomicsBenchmark.ensureNext",
"microBenchmarks.StringBenchmark.stringConcat",
"microBenchmarks.StringBenchmark.stringConcatNullable",
"microBenchmarks.EulerBenchmark.problem4",
"microBenchmarks.ArrayCopyBenchmark.copyInSameArray",
"microBenchmarks.BunnymarkBenchmark.testBunnymark",
"microBenchmarks.CoordinatesSolverBenchmark.solve",
)
with(create("fastMicro")) {
iterations = 5
warmups = 5
iterationTime = 50
iterationTimeUnit = "millis"
outputTimeUnit = "millis"
reportFormat = "json"
mode = "avgt"
advanced("jsUseBridge", true)
includes.add("microBenchmarks")
excludes.addAll(slowMicroBenchmarks)
}
with(create("slowMicro")) {
iterations = 1
warmups = 5
iterationTime = 1
iterationTimeUnit = "nanos"
outputTimeUnit = "millis"
reportFormat = "json"
mode = "avgt"
advanced("jsUseBridge", true)
includes.addAll(slowMicroBenchmarks)
}
}
val reportDir = project.buildDir.resolve(reportsDir)
val compileSyncDir = project.buildDir.resolve("compileSync")
targets {
val bundleSizeList = mutableListOf<Pair<String, File>>()
val reportTasks = mutableListOf<TaskProvider<Task>>()
register("wasm") {
reportTasks.add(createReportTargetToTC(reportDir, name))
reportTasks.add(createReportTargetToTC(reportDir, "jsShell_$name"))
val wasmCompileSyncDir = compileSyncDir
.resolve("wasm")
.resolve("wasmBenchmark")
.resolve("wasmBenchmarkDevelopmentExecutable")
.resolve("kotlin")
bundleSizeList.add("wasm" to wasmCompileSyncDir)
}
register("wasmOpt") {
reportTasks.add(createReportTargetToTC(reportDir, name))
reportTasks.add(createReportTargetToTC(reportDir, "jsShell_$name"))
val wasmCompileSyncDir = compileSyncDir
.resolve("wasm")
.resolve("wasmBenchmark")
.resolve("wasmBenchmarkProductionExecutable")
.resolve("optimized")
bundleSizeList.add("wasmOpt" to wasmCompileSyncDir)
}
register("js") {
(this as JsBenchmarkTarget).jsBenchmarksExecutor = JsBenchmarksExecutor.BuiltIn
reportTasks.add(createReportTargetToTC(reportDir, name))
reportTasks.add(createReportTargetToTC(reportDir, "jsShell_$name"))
val wasmCompileSyncDir = compileSyncDir
.resolve("js")
.resolve("jsBenchmark")
bundleSizeList.add("js" to wasmCompileSyncDir)
}
reportTasks.add(registerReportBundleSizes(bundleSizeList))
reportAllTargetsToTC.configure {
reportTasks.forEach {
dependsOn(it)
}
}
}
}
/////////////////////////
val jsShellDirectory = "https://archive.mozilla.org/pub/firefox/releases/134.0.2/jsshell"
val jsShellSuffix = when (currentOsType) {
OsType(OsName.LINUX, OsArch.X86_32) -> "linux-i686"
OsType(OsName.LINUX, OsArch.X86_64) -> "linux-x86_64"
OsType(OsName.MAC, OsArch.X86_64),
OsType(OsName.MAC, OsArch.ARM64) -> "mac"
OsType(OsName.WINDOWS, OsArch.X86_32) -> "win32"
OsType(OsName.WINDOWS, OsArch.X86_64) -> "win64"
else -> error("unsupported os type $currentOsType")
}
val jsShellLocation = "$jsShellDirectory/jsshell-$jsShellSuffix.zip"
val downloadedTools = File(buildDir, "tools")
val downloadJsShell = tasks.register("jsShellDownload", Download::class) {
src(jsShellLocation)
dest(File(downloadedTools, "jsshell-$jsShellSuffix.zip"))
overwrite(false)
}
val unzipJsShell = tasks.register("jsShellUnzip", Copy::class) {
dependsOn(downloadJsShell)
from(zipTree(downloadJsShell.get().dest))
val unpackedDir = File(downloadedTools, "jsshell-$jsShellSuffix")
into(unpackedDir)
}
fun tryGetBinary(compilation: KotlinJsCompilation, mode: KotlinJsBinaryMode): JsIrBinary? =
(compilation.target as? KotlinJsIrTarget)
?.binaries
?.executable(compilation)
?.first { it.mode == mode }
fun Project.createJsShellExec(
config: BenchmarkConfiguration,
target: BenchmarkTarget,
compilation: KotlinJsCompilation,
taskName: String,
mode: KotlinJsBinaryMode,
fileNamePostfix: String,
): TaskProvider<Exec> = tasks.register(taskName, Exec::class) {
dependsOn(compilation.runtimeDependencyFiles)
dependsOn(unzipJsShell)
group = BenchmarksPlugin.BENCHMARKS_TASK_GROUP
description = "Executes benchmark for '${target.name}' with jsShell"
val newArgs = mutableListOf<String>()
executable = File(unzipJsShell.get().destinationDir, "js").absolutePath
val productionBinary = tryGetBinary(compilation, mode) ?: error("Not found production binary")
dependsOn(productionBinary.linkSyncTask)
val inputFile = productionBinary.mainFile
dependsOn(inputFile)
val inputFileAsFile = inputFile.get().asFile
workingDir = inputFileAsFile.parentFile
if (compilation.target.platformType == KotlinPlatformType.wasm) {
newArgs.add("--module=${inputFileAsFile.absolutePath}")
} else {
newArgs.add("--file=${inputFileAsFile.absolutePath}")
}
val reportFile = setupReporting(target, config, "jsShell_", fileNamePostfix)
newArgs.add("--")
newArgs.add(writeParameters(target.name, reportFile, traceFormat(), config).absolutePath)
args = newArgs
standardOutput = ConsoleAndFilesOutputStream()
}
fun Project.createJsEngineBenchmarkExecTask(
config: BenchmarkConfiguration,
target: BenchmarkTarget,
compilation: KotlinJsCompilation,
mode: KotlinJsBinaryMode,
) {
val postfix = if (mode == KotlinJsBinaryMode.DEVELOPMENT) "" else "Opt"
val taskName = "jsShell_${target.name}$postfix${config.capitalizedName()}${BenchmarksPlugin.BENCHMARK_EXEC_SUFFIX}"
val compilationTarget = compilation.target
if (compilationTarget is KotlinWasmSubTargetContainerDsl) {
val execTask = createJsShellExec(config, target, compilation, taskName, mode, postfix)
tasks.getByName(config.prefixName(BenchmarksPlugin.RUN_BENCHMARKS_TASKNAME)).dependsOn(execTask)
}
}
afterEvaluate {
val extension = extensions.getByName(BenchmarksPlugin.BENCHMARK_EXTENSION_NAME) as BenchmarksExtension
extension.targets.forEach { target ->
val compilation = when (target) {
is WasmBenchmarkTarget -> target.compilation
is JsBenchmarkTarget -> target.compilation
else -> null
}
if (compilation != null) {
target.extension.configurations.forEach { config ->
val benchmarkCompilation = compilation.target.compilations.maybeCreate(target.name + BenchmarksPlugin.BENCHMARK_COMPILATION_SUFFIX) as KotlinJsCompilation
createJsEngineBenchmarkExecTask(config, target, benchmarkCompilation, KotlinJsBinaryMode.PRODUCTION)
createJsEngineBenchmarkExecTask(config, target, benchmarkCompilation, KotlinJsBinaryMode.DEVELOPMENT)
}
}
}
}
tasks.withType<KotlinJsCompile> {
compilerOptions.freeCompilerArgs.add("-Xskip-prerelease-check")
}
rootProject.the<YarnRootExtension>().yarnLockMismatchReport =
org.jetbrains.kotlin.gradle.targets.js.yarn.YarnLockMismatchReport.NONE