| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
std::ranges::fill(base::as_writable_byte_span(bit_array_), 0);Wouldn't this work equally well on just the `bit_array_` itself? (i.e `fill()`ing `BitArrayUnit`s; the APK diff suggests that this ends up emitting constrained iterators - which seems like it would be possible to avoid here; `std::array::fill` might also be an option)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
📍 Job mac-m1_mini_2020-perf-pgo/speedometer3 complete.
See results at: https://pinpoint-dot-chromeperf.appspot.com/job/157cdcc3b10000
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
std::ranges::fill(base::as_writable_byte_span(bit_array_), 0);Wouldn't this work equally well on just the `bit_array_` itself? (i.e `fill()`ing `BitArrayUnit`s; the APK diff suggests that this ends up emitting constrained iterators - which seems like it would be possible to avoid here; `std::array::fill` might also be an option)
`std::ranges::fill(bit_array_, 0)` worked well, and it didn't increase the binary size. Thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Commit-Queue | +2 |
std::ranges::fill(base::as_writable_byte_span(bit_array_), 0);Kent TamuraWouldn't this work equally well on just the `bit_array_` itself? (i.e `fill()`ing `BitArrayUnit`s; the APK diff suggests that this ends up emitting constrained iterators - which seems like it would be possible to avoid here; `std::array::fill` might also be an option)
`std::ranges::fill(bit_array_, 0)` worked well, and it didn't increase the binary size. Thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
WTF: Spanify BloomFilter
Use std::array instead of a raw array.
Speedometer3 performance with this CL looks neutral.
https://pinpoint-dot-chromeperf.appspot.com/job/157cdcc3b10000
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |