Re: Bug in parallel sorting of float / double

2019-08-06 Thread Doug Lea
   Среда, 24 июля 2019, 15:39 +03:00 от David Holmes >>     : >> >>     Hi Vladimir, >> >>     On 24/07/2019 8:53 pm, Vladimir Yaroslavskiy wrote: >> > Hi all, >> > >> > I've found bug in parallel sorting of float / double

Re: Bug in parallel sorting of float / double

2019-07-24 Thread David Holmes
David Holmes : Hi Vladimir, On 24/07/2019 8:53 pm, Vladimir Yaroslavskiy wrote: > Hi all, > > I've found bug in parallel sorting of float / double arrays in the latest JDK. > > When float / double values are sorted, additional actions are

Re[2]: Bug in parallel sorting of float / double

2019-07-24 Thread Vladimir Yaroslavskiy
19, 15:39 +03:00 от David Holmes : > >Hi Vladimir, > >On 24/07/2019 8:53 pm, Vladimir Yaroslavskiy wrote: >> Hi all, >> >> I've found bug in parallel sorting of float / double arrays in the latest >> JDK. >> >> When float / double values are sorted,

Re: Bug in parallel sorting of float / double

2019-07-24 Thread David Holmes
Hi Vladimir, On 24/07/2019 8:53 pm, Vladimir Yaroslavskiy wrote: Hi all, I've found bug in parallel sorting of float / double arrays in the latest JDK. When float / double values are sorted, additional actions are required: NaNs must be moved to the end and negative zeros must be placed

Bug in parallel sorting of float / double

2019-07-24 Thread Vladimir Yaroslavskiy
Hi all, I've found bug in parallel sorting of float / double arrays in the latest JDK. When float / double values are sorted, additional actions are required: NaNs must be moved to the end and negative zeros must be placed before positive zeros. Current implementation of Arrays.parallelSort