From dbbe7e07fd0a2553527fddee1538ab6a3367bede Mon Sep 17 00:00:00 2001 From: Chris Hegarty <62058229+ChrisHegarty@users.noreply.github.com> Date: Sat, 23 Sep 2023 23:01:47 +0100 Subject: [PATCH] Update version range in jvm.options for the Panama Vector API (#99846) This commit updates the version range in jvm.options for the Panama Vector API. The range is updated from just a single value 20, to a range starting from 20 with no upper bound. This effectively enables the Panama Vector API for use in Lucene on all JDK versions greater than 19. --- distribution/src/config/jvm.options | 2 +- docs/changelog/99846.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 docs/changelog/99846.yaml diff --git a/distribution/src/config/jvm.options b/distribution/src/config/jvm.options index 85c42d3f4aeeb..c5e905f461f45 100644 --- a/distribution/src/config/jvm.options +++ b/distribution/src/config/jvm.options @@ -56,7 +56,7 @@ # Leverages accelerated vector hardware instructions; removing this may # result in less optimal vector performance -20:--add-modules=jdk.incubator.vector +20-:--add-modules=jdk.incubator.vector ## heap dumps diff --git a/docs/changelog/99846.yaml b/docs/changelog/99846.yaml new file mode 100644 index 0000000000000..198b0b6f939ac --- /dev/null +++ b/docs/changelog/99846.yaml @@ -0,0 +1,5 @@ +pr: 99846 +summary: Update version range in `jvm.options` for the Panama Vector API +area: Vector Search +type: bug +issues: []