Joel Falcou

Results 179 comments of Joel Falcou

Can't we consider wasm simd as a separate target architecture ?

Normally, EVE detects and includes the SSE extensions by itself. You should not have to include ximmintrin manually as we'll do it for you. Now, we use SPY to detect...

If no SIMD is detected, all operations are emulated indeed. Could you add a `std::cout

Yeah the libc++ support is still flaky. As for the issue, I'll need to test manually as it'll get faster than me telling you to poke here and there. What...

Maybe we can actually modify spec.hpp for x86 by wrapping the >128 test in a macro that detects emscipten properly ?

We need to get a proper testing harness first anyway

Doesn't just do r_t{t} inside if_else do enough to trigger narrowing detection ?

Yes, there are two flavors of ARM concerning endianness, we should support both. This also means more CI instances.

Looks good. It can probably repalce lookup which is bad mostly everywhere. One note is that we don't really like tmepalte function parameters so somethign akin `one_if(wide, matches)` is to...

Isn't it because zip loses the non-const qualifier? C++23 zip range had a similar issue and they fixed it by doing the wrong thing: making tuple const assignable maybe we...