Wolf Vollprecht

Results 506 comments of Wolf Vollprecht

The algorithm would be extremely simple: ``` xsimd::batch x(0,1,2,3); xsimd::batch step(4); for (...) assign (x) x = x + step; ``` needs some adjustments for step size but should all...

```cpp template auto get_bool_from_bits(std::index_sequence) { return batch_bool((P & 1

yep, you're right, that should have been interleave. :)

Ok, here is the second proposal ;) ```cpp template struct selector_immediate; template struct selector_immediate { using type = int32_t; }; template batch select(batch& a, batch& b) { auto res =...

optionally we could also use/support this syntax: `select(a, b)` to make us "immune" against streaming vector extensions ...

I was looking to contribute an annotation for `shr` ... other annotations are now appearing upon hovering over the instruction, right? Is there a central repository for annotations? If I...

Ok, I just figured out that right-clicking on the instruction opens the context menu with more infos.

Hmm, I see, yeah that might work. Anyways, I have some ideas on improvements for the dynamic progress bar. I'll try a PR when I have something. My goal would...

There is an additional issue tied to this where the initial start time is not set for the 1st printing, and then the elapsed time is some very long time...

Dear people of Blitz++, I am one of the core devs of xtensor, which has already been discovered in another thread. Indeed we try to have a modern (C++14) nD-array...