yew1eb opened a new issue, #2160:
URL: https://github.com/apache/auron/issues/2160
In `join_hash_map.rs` probe logic, both SIMD comparisons execute
unconditionally
:
```
let hash_matched = self.map[e].hashes.simd_eq(Simd::splat(hashes[i]));
let empty = self.map[e].hashes.simd_eq(Simd::splat(0)); // always runs
if let Some(pos) = (hash_matched | empty).first_set() { ... }
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]