Christopher Hillenbrand

Results 19 comments of Christopher Hillenbrand

CMake has [INTERPROCEDURAL_OPTIMIZATION](https://cmake.org/cmake/help/latest/prop_tgt/INTERPROCEDURAL_OPTIMIZATION.html) but I am not sure whether it solves the parallelization issue. Need to check the actual flags that it adds. The cause of LTO serialization is the...

The Gregory quadrature method in this code is the one described in https://doi.org/10.1016/j.cpc.2020.107484. It seems to be the same method as Appendix I and II of https://doi.org/10.1093/imanum/2.2.131 This paper is...

These kernels will build on GCC 15.1 with the option `-fno-tree-slp-vectorize` . One way to accomplish this is to put ``` #pragma GCC optimize("-fno-tree-slp-vectorize") ``` at the top of affected...

Works for me too, on consumer Haswell (Coffee Lake) with gcc 15.1.1. The fast test suite passes but I haven't run the long one.

Not sure what's happening with the fuzzer. It doesn't look like it ran properly?

just rebased, it still works!

> Do you intend to also add support for the companion tag of 43001 (complex number arrays)? Probably not. I am not convinced 43001 is the right way to handle...

I've thought it over some more and am not really opposed to implementing 43001, even if it's not the best way to do complex arrays. At least it's a way.

I have added support for complex numbers here: https://github.com/chillenb/cbor2/tree/complex will make a PR soon after I write tests.