Wolf Vollprecht

Results 1460 comments of Wolf Vollprecht

@dhirschfeld do you have any ideas? Could it be possible that mamba picks up `dll`'s with the wrong/different versions (e.g. from chocolatey or nuget or whatever?).

I have a working micromamba ci example here: https://github.com/wolfv/multisheller/blob/main/.github/workflows/ci.yaml We have to fix a small thing so that we can also use the magic link to always get the latest...

Hi Philipp, good to see you're on it, still :) yes, like that. just selecting the pane/tab by terminal title (which usually is the working directory or the running command)....

I agree, functionality wise it won't make a difference -- I just thought it was weird that we have `equal` vs `eq` in batch_bool vs batch kernels, and `not_equal` vs...

Do you need to use long or would int32_t also work? Otherwise, I guess we could use `sizeof(long) == 4 && std::is_signed` to map to `int32_t` or `int64_t` depending on...

But unsigned long might not be signed? Le 10 oct. 2018 13:29, "Johan Mabille" a écrit : > AFAIK, on 64bits architecure, long == int64, on 32 bits architecture sizeof(long)...

Note MIPP has very readable implementations for this. https://github.com/aff3ct/MIPP

Also implementations available in PacketMath of Eigen3.

Yes, definitely, you can always call the store aligned member function of the batch! ``` float* ptr; xsimd::batch a(0, 1, 2, 3); a.store_aligned(ptr); ... ```