Jesse Rosenstock

Results 14 issues of Jesse Rosenstock

``` CMake Warning (dev) at /usr/share/cmake-3.21/Modules/UseSWIG.cmake:765 (message): Policy CMP0078 is not set: UseSWIG generates standard target names. Run "cmake --help-policy CMP0078" for policy details. Use the cmake_policy command to set...

There are uses of a few deprecated things like std::iterator and std::is_pod. Remove these.

We will need to do something about what are currently external dependencies: openssl, ~~glog, gflags~~. This might be useful: https://github.com/openssl/openssl/issues/3840

This arg was previously called `--max-num-tries`, but it is documented as `--num-tries` in `print_help`, and is used for `param_num_tries`.

26b4626 changed this from` -x` to `~x - 1` to avoid MSVC compilation errors. `0 - x` is less obscure.

It would be nice to be able to read and map (or mostly map and read the rest) data from 0.1.5, which I know uses a different format. Are the...

Replace for loop. This should at least not be slower, and is probably faster. I didn't benchmark it. For full C++ style points, this could be std::copy_n(), but that seems...

1. AArch64 byte-wise popcount optimization ARM NEON has a byte-wise popcount instruction, which helps to optimize `select_bit` and `PopCount::count`. Use it for AArch64 (64-bit ARM). 15% speedup for `Rank1`, 4%...