RFR: 8346236: Auto vectorization support for various Float16 operations [v3]

Jatin Bhateja jbhateja at openjdk.org
Fri Mar 21 08:55:03 UTC 2025


On Thu, 20 Mar 2025 23:52:19 GMT, Sandhya Viswanathan <sviswanathan at openjdk.org> wrote:

>> Jatin Bhateja has updated the pull request with a new target base due to a merge or a rebase.
>
> test/hotspot/jtreg/compiler/vectorization/TestFloat16VectorOperations.java line 62:
> 
>> 60:             return !expected_fp16.equals(actual_fp16);
>> 61:         }
>> 62:         return false;
> 
> This should be reverse:
>         if (isNaN(expected_fp16) ^ isNaN(actual_fp16)) {
>           return false;
>         }
>         return !expected_fp16.equals(actual_fp16);

My bad. Fixed.

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

PR Review Comment: https://git.openjdk.org/jdk/pull/22755#discussion_r2007111082


More information about the hotspot-compiler-dev mailing list