├── .gitignore ├── .teamcity ├── additionalConfiguration.kt ├── pom.xml ├── settings.kts └── utils.kt ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── configuration-options.md ├── kotlin-jvm-project-setup.md ├── separate-benchmark-source-set.md ├── tasks-overview.md └── writing-benchmarks.md ├── examples ├── build.gradle.kts ├── compare-benchmark-runs.ipynb ├── java │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── test │ │ └── SampleJavaBenchmark.java ├── kotlin-jvm-separate-benchmark-source-set │ ├── benchmarks │ │ └── src │ │ │ └── TestBenchmark.kt │ ├── build.gradle.kts │ └── main │ │ └── src │ │ └── TestData.kt ├── kotlin-jvm │ ├── build.gradle.kts │ └── main │ │ └── src │ │ └── JvmTestBenchmark.kt ├── kotlin-multiplatform │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ ├── CommonBenchmark.kt │ │ │ ├── InheritedBenchmark.kt │ │ │ ├── ParamBenchmark.kt │ │ │ └── nested │ │ │ └── CommonBenchmark.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ ├── JsAsyncBenchmarks.kt │ │ │ └── JsTestBenchmark.kt │ │ ├── jvmBenchmark │ │ └── kotlin │ │ │ └── JvmBenchmark.kt │ │ ├── jvmMain │ │ └── kotlin │ │ │ └── JvmTestBenchmark.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── NativeTestBenchmark.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── WasmTestBenchmark.kt └── simple-benchmark-analysis.ipynb ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── integration ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── kotlinx │ │ └── benchmark │ │ └── integration │ │ ├── AnnotationsSpecifier.kt │ │ ├── BenchmarkConfiguration.kt │ │ ├── BenchmarkTarget.kt │ │ ├── GradleTestVersion.kt │ │ ├── ProjectBuilder.kt │ │ └── Runner.kt │ └── test │ ├── kotlin │ └── kotlinx │ │ └── benchmark │ │ └── integration │ │ ├── AnnotationsValidationTest.kt │ │ ├── BenchmarkFunctionNameValidationTest.kt │ │ ├── ConfigurationCacheTest.kt │ │ ├── GradleTest.kt │ │ ├── InvalidTargetingTest.kt │ │ ├── JmhVersionValidationTest.kt │ │ ├── JvmToolchainsTest.kt │ │ ├── KotlinJsTest.kt │ │ ├── KotlinNativeTest.kt │ │ ├── OptionsOverrideAnnotationsTest.kt │ │ ├── OptionsValidationTest.kt │ │ ├── ProjectWithResourceFilesTest.kt │ │ ├── ReportFormatTest.kt │ │ ├── SourceSetAsBenchmarkTargetTest.kt │ │ ├── SuiteSourceGeneratorTest.kt │ │ ├── SupportedGradleVersionTest.kt │ │ ├── SupportedKotlinVersionTest.kt │ │ ├── TransitiveDependenciesResolutionTest.kt │ │ ├── WasmGcOptionsTest.kt │ │ └── testDsl.kt │ └── resources │ └── templates │ ├── annotations-validation │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ ├── config-options │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ ├── conflicting-jmh-versions │ ├── build.gradle │ └── gradle.properties │ ├── es-modules │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ ├── funny-names │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ ├── invalid-target │ ├── js-browser │ │ └── build.gradle │ ├── js-d8 │ │ └── build.gradle │ ├── wasm-browser │ │ └── build.gradle │ └── wasm-nodejs │ │ ├── build.gradle │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ ├── kmp-with-toolchain │ ├── higher-version-than-in-gradle │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── jvmMain │ │ │ └── kotlin │ │ │ └── JvmBenchmark.kt │ └── min-supported-version │ │ ├── build.gradle │ │ ├── gradle.properties │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ ├── kotlin-multiplatform-separate-source-set │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── CommonTestData.kt │ │ ├── jsCustom │ │ └── kotlin │ │ │ └── JsCustomBenchmark.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── JsTestData.kt │ │ ├── jvmCustom │ │ └── kotlin │ │ │ └── JvmCustomBenchmark.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── JvmTestData.kt │ ├── kotlin-multiplatform │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── CommonBenchmark.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── RootBenchmark.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── RootBenchmark.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── RootBenchmark.kt │ ├── kotlin-native │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── CommonBenchmark.kt │ │ └── nativeMain │ │ └── kotlin │ │ └── DebugBenchmark.kt │ ├── project-with-resources │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ └── commonMain │ │ ├── kotlin │ │ └── CommonBenchmark.kt │ │ └── resources │ │ └── dummy.file.txt │ ├── source-generation │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ ├── transitive-dependencies-resolution │ ├── build.gradle │ ├── gradle.properties │ ├── library │ │ ├── build.gradle │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── library.kt │ ├── settings.gradle │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── CommonBenchmark.kt │ └── wasm-gc-non-experimental │ └── wasm-d8 │ ├── build.gradle │ ├── gradle.properties │ └── src │ └── commonMain │ └── kotlin │ └── CommonBenchmark.kt ├── kotlin-js-store └── yarn.lock ├── plugin ├── api │ └── kotlinx-benchmark-plugin.api ├── build.gradle.kts ├── gradle.properties ├── main │ └── src │ │ └── kotlinx │ │ └── benchmark │ │ └── gradle │ │ ├── AnnotationsValidator.kt │ │ ├── BenchmarkConfiguration.kt │ │ ├── BenchmarksExtension.kt │ │ ├── BenchmarksPlugin.kt │ │ ├── ConsoleAndFilesOutputStream.kt │ │ ├── JmhBytecodeGeneratorTask.kt │ │ ├── JmhBytecodeGeneratorWorker.kt │ │ ├── JsEngineExecTasks.kt │ │ ├── JsMultiplatformTasks.kt │ │ ├── JsSourceGeneratorTask.kt │ │ ├── JvmJavaTasks.kt │ │ ├── JvmMultiplatformTasks.kt │ │ ├── JvmTasks.kt │ │ ├── KlibResolver.kt │ │ ├── NativeMultiplatformTasks.kt │ │ ├── NativeSourceGeneratorTask.kt │ │ ├── SuiteSourceGenerator.kt │ │ ├── Utils.kt │ │ ├── WasmMultiplatformTasks.kt │ │ ├── WasmSourceGeneratorTask.kt │ │ └── internal │ │ ├── BenchmarkDependencies.kt │ │ ├── KotlinxBenchmarkPluginInternalApi.kt │ │ └── generator │ │ ├── RequiresKotlinCompilerEmbeddable.kt │ │ └── workers │ │ ├── GenerateJsSourceWorker.kt │ │ └── GenerateWasmSourceWorker.kt └── settings.gradle.kts ├── runtime ├── api │ ├── kotlinx-benchmark-runtime.api │ └── kotlinx-benchmark-runtime.klib.api ├── build.gradle.kts ├── commonMain │ └── src │ │ └── kotlinx │ │ └── benchmark │ │ ├── BenchmarkConfiguration.kt │ │ ├── BenchmarkDescriptor.kt │ │ ├── BenchmarkProgress.kt │ │ ├── BenchmarkReportFormatter.kt │ │ ├── Blackhole.kt │ │ ├── CommonBenchmarkAnnotations.kt │ │ ├── CommonBlackhole.kt │ │ ├── CommonSuiteExecutor.kt │ │ ├── IntelliJLog.kt │ │ ├── ReportBenchmarkResult.kt │ │ ├── ReportBenchmarksStatistics.kt │ │ ├── RunnerConfiguration.kt │ │ ├── SuiteDescriptor.kt │ │ ├── SuiteExecutor.kt │ │ ├── Utils.kt │ │ └── internal │ │ └── KotlinxBenchmarkPluginInternalApi.kt ├── commonTest │ └── src │ │ └── kotlinx │ │ └── benchmark │ │ └── tests │ │ └── FormatTests.kt ├── jsMain │ └── src │ │ └── kotlinx │ │ └── benchmark │ │ ├── D8EngineSupport.kt │ │ ├── JsBenchmarkAnnotations.kt │ │ ├── NodeJsEngineSupport.kt │ │ ├── UtilsJs.kt │ │ └── js │ │ ├── JsBenchmarkDescriptorWithAsync.kt │ │ ├── JsBenchmarkExecutor.kt │ │ └── JsBuiltInExecutor.kt ├── jsWasmJsSharedMain │ └── src │ │ └── kotlinx │ │ └── benchmark │ │ └── CommonBlackhole.kt ├── jvmMain │ └── src │ │ └── kotlinx │ │ └── benchmark │ │ ├── JvmBenchmarkAnnotations.kt │ │ ├── JvmBlackhole.kt │ │ ├── Utils.kt │ │ └── jvm │ │ └── JvmBenchmarkRunner.kt ├── nativeMain │ └── src │ │ └── kotlinx │ │ └── benchmark │ │ ├── NativeBenchmarkAnnotations.kt │ │ ├── NativeBlackhole.kt │ │ ├── NativeIntelliJBenchmarkProgress.kt │ │ ├── Utils.kt │ │ └── native │ │ └── NativeExecutor.kt └── wasmJsMain │ └── src │ └── kotlinx │ └── benchmark │ ├── D8EngineSupport.kt │ ├── NodeJsEngineSupport.kt │ ├── Utils.kt │ ├── WasmBenchmarkAnnotations.kt │ └── wasm │ └── WasmBuiltInExecutor.kt └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.teamcity/additionalConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/.teamcity/additionalConfiguration.kt -------------------------------------------------------------------------------- /.teamcity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/.teamcity/pom.xml -------------------------------------------------------------------------------- /.teamcity/settings.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/.teamcity/settings.kts -------------------------------------------------------------------------------- /.teamcity/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/.teamcity/utils.kt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /docs/configuration-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/docs/configuration-options.md -------------------------------------------------------------------------------- /docs/kotlin-jvm-project-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/docs/kotlin-jvm-project-setup.md -------------------------------------------------------------------------------- /docs/separate-benchmark-source-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/docs/separate-benchmark-source-set.md -------------------------------------------------------------------------------- /docs/tasks-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/docs/tasks-overview.md -------------------------------------------------------------------------------- /docs/writing-benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/docs/writing-benchmarks.md -------------------------------------------------------------------------------- /examples/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/build.gradle.kts -------------------------------------------------------------------------------- /examples/compare-benchmark-runs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/compare-benchmark-runs.ipynb -------------------------------------------------------------------------------- /examples/java/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/java/build.gradle.kts -------------------------------------------------------------------------------- /examples/java/src/main/java/test/SampleJavaBenchmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/java/src/main/java/test/SampleJavaBenchmark.java -------------------------------------------------------------------------------- /examples/kotlin-jvm-separate-benchmark-source-set/benchmarks/src/TestBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-jvm-separate-benchmark-source-set/benchmarks/src/TestBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-jvm-separate-benchmark-source-set/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-jvm-separate-benchmark-source-set/build.gradle.kts -------------------------------------------------------------------------------- /examples/kotlin-jvm-separate-benchmark-source-set/main/src/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-jvm-separate-benchmark-source-set/main/src/TestData.kt -------------------------------------------------------------------------------- /examples/kotlin-jvm/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-jvm/build.gradle.kts -------------------------------------------------------------------------------- /examples/kotlin-jvm/main/src/JvmTestBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-jvm/main/src/JvmTestBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/build.gradle.kts -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/commonMain/kotlin/InheritedBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/commonMain/kotlin/InheritedBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/commonMain/kotlin/ParamBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/commonMain/kotlin/ParamBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/commonMain/kotlin/nested/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/commonMain/kotlin/nested/CommonBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/jsMain/kotlin/JsAsyncBenchmarks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/jsMain/kotlin/JsAsyncBenchmarks.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/jsMain/kotlin/JsTestBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/jsMain/kotlin/JsTestBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/jvmBenchmark/kotlin/JvmBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/jvmBenchmark/kotlin/JvmBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/jvmMain/kotlin/JvmTestBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/jvmMain/kotlin/JvmTestBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/nativeMain/kotlin/NativeTestBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/nativeMain/kotlin/NativeTestBenchmark.kt -------------------------------------------------------------------------------- /examples/kotlin-multiplatform/src/wasmJsMain/kotlin/WasmTestBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/kotlin-multiplatform/src/wasmJsMain/kotlin/WasmTestBenchmark.kt -------------------------------------------------------------------------------- /examples/simple-benchmark-analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/examples/simple-benchmark-analysis.ipynb -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/gradlew.bat -------------------------------------------------------------------------------- /integration/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/build.gradle.kts -------------------------------------------------------------------------------- /integration/src/main/kotlin/kotlinx/benchmark/integration/AnnotationsSpecifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/main/kotlin/kotlinx/benchmark/integration/AnnotationsSpecifier.kt -------------------------------------------------------------------------------- /integration/src/main/kotlin/kotlinx/benchmark/integration/BenchmarkConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/main/kotlin/kotlinx/benchmark/integration/BenchmarkConfiguration.kt -------------------------------------------------------------------------------- /integration/src/main/kotlin/kotlinx/benchmark/integration/BenchmarkTarget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/main/kotlin/kotlinx/benchmark/integration/BenchmarkTarget.kt -------------------------------------------------------------------------------- /integration/src/main/kotlin/kotlinx/benchmark/integration/GradleTestVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/main/kotlin/kotlinx/benchmark/integration/GradleTestVersion.kt -------------------------------------------------------------------------------- /integration/src/main/kotlin/kotlinx/benchmark/integration/ProjectBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/main/kotlin/kotlinx/benchmark/integration/ProjectBuilder.kt -------------------------------------------------------------------------------- /integration/src/main/kotlin/kotlinx/benchmark/integration/Runner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/main/kotlin/kotlinx/benchmark/integration/Runner.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/AnnotationsValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/AnnotationsValidationTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/BenchmarkFunctionNameValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/BenchmarkFunctionNameValidationTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/ConfigurationCacheTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/ConfigurationCacheTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/GradleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/GradleTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/InvalidTargetingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/InvalidTargetingTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/JmhVersionValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/JmhVersionValidationTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/JvmToolchainsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/JvmToolchainsTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/KotlinJsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/KotlinJsTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/KotlinNativeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/KotlinNativeTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/OptionsOverrideAnnotationsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/OptionsOverrideAnnotationsTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/OptionsValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/OptionsValidationTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/ProjectWithResourceFilesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/ProjectWithResourceFilesTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/ReportFormatTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/ReportFormatTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/SourceSetAsBenchmarkTargetTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/SourceSetAsBenchmarkTargetTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/SuiteSourceGeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/SuiteSourceGeneratorTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/SupportedGradleVersionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/SupportedGradleVersionTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/SupportedKotlinVersionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/SupportedKotlinVersionTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/TransitiveDependenciesResolutionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/TransitiveDependenciesResolutionTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/WasmGcOptionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/WasmGcOptionsTest.kt -------------------------------------------------------------------------------- /integration/src/test/kotlin/kotlinx/benchmark/integration/testDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/kotlin/kotlinx/benchmark/integration/testDsl.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/annotations-validation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/annotations-validation/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/annotations-validation/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/annotations-validation/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/annotations-validation/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/config-options/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/config-options/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/config-options/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/config-options/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/config-options/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/conflicting-jmh-versions/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/conflicting-jmh-versions/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/conflicting-jmh-versions/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/es-modules/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/es-modules/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/es-modules/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/es-modules/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/es-modules/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/funny-names/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/funny-names/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/funny-names/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/funny-names/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/funny-names/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/invalid-target/js-browser/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/invalid-target/js-browser/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/invalid-target/js-d8/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/invalid-target/js-d8/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/invalid-target/wasm-browser/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/invalid-target/wasm-browser/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/invalid-target/wasm-nodejs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/invalid-target/wasm-nodejs/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/invalid-target/wasm-nodejs/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/invalid-target/wasm-nodejs/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kmp-with-toolchain/higher-version-than-in-gradle/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kmp-with-toolchain/higher-version-than-in-gradle/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kmp-with-toolchain/higher-version-than-in-gradle/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kmp-with-toolchain/higher-version-than-in-gradle/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kmp-with-toolchain/higher-version-than-in-gradle/settings.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kmp-with-toolchain/higher-version-than-in-gradle/src/jvmMain/kotlin/JvmBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kmp-with-toolchain/higher-version-than-in-gradle/src/jvmMain/kotlin/JvmBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kmp-with-toolchain/min-supported-version/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kmp-with-toolchain/min-supported-version/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kmp-with-toolchain/min-supported-version/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kmp-with-toolchain/min-supported-version/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kmp-with-toolchain/min-supported-version/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/commonMain/kotlin/CommonTestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/commonMain/kotlin/CommonTestData.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jsCustom/kotlin/JsCustomBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jsCustom/kotlin/JsCustomBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jsMain/kotlin/JsTestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jsMain/kotlin/JsTestData.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jvmCustom/kotlin/JvmCustomBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jvmCustom/kotlin/JvmCustomBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jvmMain/kotlin/JvmTestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform-separate-source-set/src/jvmMain/kotlin/JvmTestData.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform/src/jsMain/kotlin/RootBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform/src/jsMain/kotlin/RootBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform/src/nativeMain/kotlin/RootBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform/src/nativeMain/kotlin/RootBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-multiplatform/src/wasmJsMain/kotlin/RootBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-multiplatform/src/wasmJsMain/kotlin/RootBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-native/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-native/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-native/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-native/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-native/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/kotlin-native/src/nativeMain/kotlin/DebugBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/kotlin-native/src/nativeMain/kotlin/DebugBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/project-with-resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/project-with-resources/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/project-with-resources/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/project-with-resources/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/project-with-resources/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/project-with-resources/src/commonMain/resources/dummy.file.txt: -------------------------------------------------------------------------------- 1 | I'm here to break your build! 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/source-generation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/source-generation/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/source-generation/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/source-generation/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/source-generation/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/transitive-dependencies-resolution/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/transitive-dependencies-resolution/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/transitive-dependencies-resolution/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/transitive-dependencies-resolution/library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/transitive-dependencies-resolution/library/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/transitive-dependencies-resolution/library/src/commonMain/kotlin/library.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/transitive-dependencies-resolution/library/src/commonMain/kotlin/library.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/transitive-dependencies-resolution/settings.gradle: -------------------------------------------------------------------------------- 1 | include("library") 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/transitive-dependencies-resolution/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/transitive-dependencies-resolution/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /integration/src/test/resources/templates/wasm-gc-non-experimental/wasm-d8/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/wasm-gc-non-experimental/wasm-d8/build.gradle -------------------------------------------------------------------------------- /integration/src/test/resources/templates/wasm-gc-non-experimental/wasm-d8/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 2 | -------------------------------------------------------------------------------- /integration/src/test/resources/templates/wasm-gc-non-experimental/wasm-d8/src/commonMain/kotlin/CommonBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/integration/src/test/resources/templates/wasm-gc-non-experimental/wasm-d8/src/commonMain/kotlin/CommonBenchmark.kt -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /plugin/api/kotlinx-benchmark-plugin.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/api/kotlinx-benchmark-plugin.api -------------------------------------------------------------------------------- /plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/build.gradle.kts -------------------------------------------------------------------------------- /plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/gradle.properties -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/AnnotationsValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/AnnotationsValidator.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/BenchmarkConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/BenchmarkConfiguration.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/BenchmarksExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/BenchmarksExtension.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/BenchmarksPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/BenchmarksPlugin.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/ConsoleAndFilesOutputStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/ConsoleAndFilesOutputStream.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JmhBytecodeGeneratorTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JmhBytecodeGeneratorTask.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JmhBytecodeGeneratorWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JmhBytecodeGeneratorWorker.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JsEngineExecTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JsEngineExecTasks.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JsMultiplatformTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JsMultiplatformTasks.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JsSourceGeneratorTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JsSourceGeneratorTask.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JvmJavaTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JvmJavaTasks.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JvmMultiplatformTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JvmMultiplatformTasks.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/JvmTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/JvmTasks.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/KlibResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/KlibResolver.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/NativeMultiplatformTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/NativeMultiplatformTasks.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/NativeSourceGeneratorTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/NativeSourceGeneratorTask.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/SuiteSourceGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/SuiteSourceGenerator.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/Utils.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/WasmMultiplatformTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/WasmMultiplatformTasks.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/WasmSourceGeneratorTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/WasmSourceGeneratorTask.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/internal/BenchmarkDependencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/internal/BenchmarkDependencies.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/internal/KotlinxBenchmarkPluginInternalApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/internal/KotlinxBenchmarkPluginInternalApi.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/internal/generator/RequiresKotlinCompilerEmbeddable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/internal/generator/RequiresKotlinCompilerEmbeddable.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/internal/generator/workers/GenerateJsSourceWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/internal/generator/workers/GenerateJsSourceWorker.kt -------------------------------------------------------------------------------- /plugin/main/src/kotlinx/benchmark/gradle/internal/generator/workers/GenerateWasmSourceWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/main/src/kotlinx/benchmark/gradle/internal/generator/workers/GenerateWasmSourceWorker.kt -------------------------------------------------------------------------------- /plugin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/plugin/settings.gradle.kts -------------------------------------------------------------------------------- /runtime/api/kotlinx-benchmark-runtime.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/api/kotlinx-benchmark-runtime.api -------------------------------------------------------------------------------- /runtime/api/kotlinx-benchmark-runtime.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/api/kotlinx-benchmark-runtime.klib.api -------------------------------------------------------------------------------- /runtime/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/build.gradle.kts -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/BenchmarkConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/BenchmarkConfiguration.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/BenchmarkDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/BenchmarkDescriptor.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/BenchmarkProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/BenchmarkProgress.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/BenchmarkReportFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/BenchmarkReportFormatter.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/Blackhole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/Blackhole.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/CommonBenchmarkAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/CommonBenchmarkAnnotations.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/CommonBlackhole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/CommonBlackhole.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/CommonSuiteExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/CommonSuiteExecutor.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/IntelliJLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/IntelliJLog.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/ReportBenchmarkResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/ReportBenchmarkResult.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/ReportBenchmarksStatistics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/ReportBenchmarksStatistics.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/RunnerConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/RunnerConfiguration.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/SuiteDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/SuiteDescriptor.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/SuiteExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/SuiteExecutor.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/Utils.kt -------------------------------------------------------------------------------- /runtime/commonMain/src/kotlinx/benchmark/internal/KotlinxBenchmarkPluginInternalApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonMain/src/kotlinx/benchmark/internal/KotlinxBenchmarkPluginInternalApi.kt -------------------------------------------------------------------------------- /runtime/commonTest/src/kotlinx/benchmark/tests/FormatTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/commonTest/src/kotlinx/benchmark/tests/FormatTests.kt -------------------------------------------------------------------------------- /runtime/jsMain/src/kotlinx/benchmark/D8EngineSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsMain/src/kotlinx/benchmark/D8EngineSupport.kt -------------------------------------------------------------------------------- /runtime/jsMain/src/kotlinx/benchmark/JsBenchmarkAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsMain/src/kotlinx/benchmark/JsBenchmarkAnnotations.kt -------------------------------------------------------------------------------- /runtime/jsMain/src/kotlinx/benchmark/NodeJsEngineSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsMain/src/kotlinx/benchmark/NodeJsEngineSupport.kt -------------------------------------------------------------------------------- /runtime/jsMain/src/kotlinx/benchmark/UtilsJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsMain/src/kotlinx/benchmark/UtilsJs.kt -------------------------------------------------------------------------------- /runtime/jsMain/src/kotlinx/benchmark/js/JsBenchmarkDescriptorWithAsync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsMain/src/kotlinx/benchmark/js/JsBenchmarkDescriptorWithAsync.kt -------------------------------------------------------------------------------- /runtime/jsMain/src/kotlinx/benchmark/js/JsBenchmarkExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsMain/src/kotlinx/benchmark/js/JsBenchmarkExecutor.kt -------------------------------------------------------------------------------- /runtime/jsMain/src/kotlinx/benchmark/js/JsBuiltInExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsMain/src/kotlinx/benchmark/js/JsBuiltInExecutor.kt -------------------------------------------------------------------------------- /runtime/jsWasmJsSharedMain/src/kotlinx/benchmark/CommonBlackhole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jsWasmJsSharedMain/src/kotlinx/benchmark/CommonBlackhole.kt -------------------------------------------------------------------------------- /runtime/jvmMain/src/kotlinx/benchmark/JvmBenchmarkAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jvmMain/src/kotlinx/benchmark/JvmBenchmarkAnnotations.kt -------------------------------------------------------------------------------- /runtime/jvmMain/src/kotlinx/benchmark/JvmBlackhole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jvmMain/src/kotlinx/benchmark/JvmBlackhole.kt -------------------------------------------------------------------------------- /runtime/jvmMain/src/kotlinx/benchmark/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jvmMain/src/kotlinx/benchmark/Utils.kt -------------------------------------------------------------------------------- /runtime/jvmMain/src/kotlinx/benchmark/jvm/JvmBenchmarkRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/jvmMain/src/kotlinx/benchmark/jvm/JvmBenchmarkRunner.kt -------------------------------------------------------------------------------- /runtime/nativeMain/src/kotlinx/benchmark/NativeBenchmarkAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/nativeMain/src/kotlinx/benchmark/NativeBenchmarkAnnotations.kt -------------------------------------------------------------------------------- /runtime/nativeMain/src/kotlinx/benchmark/NativeBlackhole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/nativeMain/src/kotlinx/benchmark/NativeBlackhole.kt -------------------------------------------------------------------------------- /runtime/nativeMain/src/kotlinx/benchmark/NativeIntelliJBenchmarkProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/nativeMain/src/kotlinx/benchmark/NativeIntelliJBenchmarkProgress.kt -------------------------------------------------------------------------------- /runtime/nativeMain/src/kotlinx/benchmark/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/nativeMain/src/kotlinx/benchmark/Utils.kt -------------------------------------------------------------------------------- /runtime/nativeMain/src/kotlinx/benchmark/native/NativeExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/nativeMain/src/kotlinx/benchmark/native/NativeExecutor.kt -------------------------------------------------------------------------------- /runtime/wasmJsMain/src/kotlinx/benchmark/D8EngineSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/wasmJsMain/src/kotlinx/benchmark/D8EngineSupport.kt -------------------------------------------------------------------------------- /runtime/wasmJsMain/src/kotlinx/benchmark/NodeJsEngineSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/wasmJsMain/src/kotlinx/benchmark/NodeJsEngineSupport.kt -------------------------------------------------------------------------------- /runtime/wasmJsMain/src/kotlinx/benchmark/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/wasmJsMain/src/kotlinx/benchmark/Utils.kt -------------------------------------------------------------------------------- /runtime/wasmJsMain/src/kotlinx/benchmark/WasmBenchmarkAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/wasmJsMain/src/kotlinx/benchmark/WasmBenchmarkAnnotations.kt -------------------------------------------------------------------------------- /runtime/wasmJsMain/src/kotlinx/benchmark/wasm/WasmBuiltInExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/runtime/wasmJsMain/src/kotlinx/benchmark/wasm/WasmBuiltInExecutor.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlinx-benchmark/HEAD/settings.gradle.kts --------------------------------------------------------------------------------