Paul Dreik
Paul Dreik
I have run on the armv7 BSD system. observations so far: - the target system is little endian - I can't get the problem to show with gcc (gcc 13...
Unfortunately no luck with the new llvm, it is unfortunately not recent enough. It must contain this commit from 20241217: https://github.com/llvm/llvm-project/commit/a487b792e2dabcec02c63d19e32958572a257408 But, I made an interesting observation: adding a printf...
there is a reproducer branch here where I have made partial success for minimizing: https://github.com/simdutf/simdutf/tree/reproduce_bsd_error
> We can use freebsd as a VM in our CI tests... https://github.com/vmactions/freebsd-vm that looks a good thing to add, regardless of this issue. The problem in this issue is...
I made partial progress: - I moved the src/scalar directory to include/simdutf/scalar and that seems to keep existing things working with very minor changes - I invoked the simdutf::scalar::utf8::validate() function...
> @pauldreik Are you sure ? > > https://godbolt.org/z/EY45GWY6o yes, you have to also use the function to see it. https://godbolt.org/z/7GeKb7r76
> @pauldreik Using AI and a bit C++ knowledge, I wrote a wrapper that seems to work: > > https://godbolt.org/z/n86945sa4 > > The idea goes like this: > > ```c++...
I have now implemented constexpr support for a few randomly selected functions and I think it definitely is doable. I also think the changes needed are quite reasonable, and the...
I am working on this (slowly). It goes in the right direction!
A related question: what would it take for us to require C++17 instead of C++11 as build requirement? Do we have any idea of how large proportion of the simdutf...