From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: violetc <58360096+s-yh-china@users.noreply.github.com> Date: Wed, 19 Jul 2023 20:09:38 +0800 Subject: [PATCH] SIMD support diff --git a/build.gradle.kts b/build.gradle.kts index c8a301080389ac54ba4911faec709b0663c3507f..03c8e56ba97badce267b3e882dfba5d97708baae 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -112,6 +112,7 @@ tasks.withType { compilerArgs.add("-Xlint:-module") compilerArgs.add("-Xlint:-removal") compilerArgs.add("-Xlint:-dep-ann") + compilerArgs.add("--add-modules=jdk.incubator.vector") // Leaves - SIMD support } // Leaves end - hide irrelevant compilation warnings @@ -174,6 +175,7 @@ tasks.withType { } options.addStringOption("Xdoclint:none", "-quiet") // Leaves - hide irrelevant compilation warnings + options.addStringOption("-add-modules", "jdk.incubator.vector") // Leaves - SIMD support } tasks.test {