1
0

Complete runnable Vector API (JEP 537) demo

SIMD kernels (square-and-add, masked filter, brightness clamp, FP reduction ordering), an exploratory timing harness, JMH benchmarks with Maven and Maven-free builds, run scripts, README and the captured results with their exact environment.
This commit was merged in pull request #1.
This commit is contained in:
2026-07-26 11:50:15 +00:00
parent e4695ab334
commit 780848e102
18 changed files with 824 additions and 2 deletions

8
jmh/run.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# Build and run the JMH benchmarks (the numbers worth defending).
# ./run.sh -> all benchmarks
# ./run.sh MaskedBench -> one class
set -euo pipefail
cd "$(dirname "$0")"
mvn -q -B clean package
java --add-modules jdk.incubator.vector -jar target/benchmarks.jar "$@"