From 88f8df3c07be21213f3775d802aebbe5f94919f6 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Thu, 9 Jan 2025 11:53:38 +0000 Subject: [PATCH] benchmark: Java max heap --- app/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6aadce9..06c6b26 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -50,6 +50,8 @@ tasks.register("runCbmCgl") { group = "application" classpath = sourceSets["main"].runtimeClasspath mainClass = "de.uni_marburg.powersort.benchmark.CbmCgl" + // Results in `-Xmx8g` being passed to JVM + maxHeapSize = "8g" } tasks.register("runCbmCompetition") { description = "Run Custom Benchmark (CBM) with Powersort competition lists"