[vectorIntrinsics] RFR: 8263149: Adding some algorithms optimized by Vector API into JMH benc… [v2]

Xiaohong Gong xgong at openjdk.java.net
Wed Mar 10 07:01:13 UTC 2021


On Wed, 10 Mar 2021 06:43:50 GMT, Wang Zhuo <wzhuo at openjdk.org> wrote:

>> Here are some code samples for panama-vector vectorIntrinsics JMH benchmarks. 
>> These code were developed during our work on optimizing Alibaba applications with Vector API.
>> VectorDistance contains Cosine distance and Euclidean distance, scalar code from 
>> https://github.com/opendistro-for-elasticsearch/k-NN/blob/aa5d1d40b136e2b3d33a14e80a2a374b2be015f9/src/main/java/com/amazon/opendistroforelasticsearch/knn/plugin/script/KNNScoringUtil.java#L61
>> In many scenarios, ElasticSearch engineers reported more than 4X E2E speedup using Vector API.
>> 
>> BooleanArrayCheck and ValueRangeCheckAndCastL2I were from OLAP applications.
>> 
>> Co-authored-by: Joshua Zhu <jzhu at openjdk.org>
>
> Wang Zhuo has refreshed the contents of this pull request, and previous commits have been removed. The incremental views will show differences compared to the previous content of the PR. The pull request contains one new commit since the last revision:
> 
>   8263149: Adding some algorithms optimized by Vector API into JMH benchmarks
>   
>   Co-authored-by: Joshua Zhu <jzhu at openjdk.org>

test/jdk/jdk/incubator/vector/benchmark/src/main/java/benchmark/bigdata/ValueRangeCheckAndCastL2I.java line 93:

> 91:     for (int i = 0; i < longArray.length; i += LONG_SPECIES.length()) {
> 92:       LongVector av = LongVector.fromArray(LONG_SPECIES, longArray, i);
> 93:       if (av.compare(VectorOperators.GE, min).allTrue() && av.compare(VectorOperators.LE, max).allTrue()) {

Regarding to the performance, is it better to use `av.compare(VectorOperators.GE, min).and(compare(VectorOperators.LE, max)).allTrue()` here?

-------------

PR: https://git.openjdk.java.net/panama-vector/pull/45


More information about the panama-dev mailing list