Sidney Cogdill

Results 21 comments of Sidney Cogdill

For conan it appears only minimal efforts are required to add version 0.4.0 to the [recipe](https://github.com/conan-io/conan-center-index/tree/master/recipes/flux): `config.yml`: ```diff versions: + "0.4.0": + folder: all "cci.20240115": folder: all ``` `all/conandata.yml`: ```diff...

ping @valgur ([original PR](https://github.com/conan-io/conan-center-index/pull/22401))

Conan Center current has some issues that can cause users to miss v0.4.0: https://github.com/conan-io/web/issues/187 Therefore it might be helpful to directly mention conan tutorials in `README.md`: ```sh conan remote update...

Instead of relying on the custom logging function, what if you set `CMAKE_CXX_COMPILER` and `CMAKE_EXPORT_COMPILE_COMMANDS` at the same time and check the generated json? It's expected that `INCLUDE_DIRECTORIES` contains the...

Just installed it to a custom location and can confirm that this no longer occurs. It seems to be only an issue if it's installed to default location. With the...

Alternatively, if you don't want to support the case of installing to default location (which is also OK): Abort when it's detected that CMAKE_INSTALL_PREFIX either has not been set or...

And well, just realized that in both your and my json file, the `AdaptiveCpp/include/AdaptiveCpp` directory is missing, only the `AdaptiveCpp/include` is present, further proving the effect of CMake implicit directories....

btw indented code blocks aren't handled: ```` - Code 1: ``` Hi ``` - Code 2: ``` There ``` ```` This is how it's rendered in GitHub: --- - Code...

(although micro-benchmarks are meaningless; profiling is much more useful) just ran benchmarks with and without the `for_each_while()` custom implementation. ```cpp static void run1(benchmark::State &state) { auto a = v::iota(0) |...

(Confirmed that the updated result is stable by re-running it multiple times.) With the updated result, the custom implementation duplicated from contiguous sequence trait is significantly faster. I haven't looked...