Wolf Vollprecht

Results 446 issues of Wolf Vollprecht

This might be more of a question, but would it be possible to get webassembly as output from cling? That could have the interesting use-case of running the generated webassembly...

A cool feature might be to have a fuzzy terminal window finder like the fuzzy file finder in sublime text. Would be useful e.g. for finding and placing the cursor...

Enhancement
GUI

### Description I was running `patch` over a ~100Mb repodata file and noticed that it was slow due to copying and destroying the entire object multiple times. I am quite...

kind: bug

Similar to xeus-cling, it could be cool to make a Jupyter kernel using xeus! https://github.com/QuantStack/xeus-cling/ There is a tutorial for a toy kernel at https://github.com/QuantStack/xeus-calc It should be only a...

enhancement

Approximate reciprocal and reciprocal square root. Could be useful + tsimd has them

This is supposed to be used in the arange `assign_to` as well as a potential `simd_step`.

tsimd has a nice masked store implementation where the last parameter to `store_aligned` style functions can be a mask. This dispatches to some special intrinsics for masked stores.

AVX 512 added some SSE and AVX2 sized instructions for comparing unsigned integers. The catch is that they return a `__maskX` and not a SIMD register size batch of bool...

In order to call store_aligned / unaligned in a generic fashion we should make the second parameter also aware of the batch size not being the max batch size (e.g....

We shoudl do two things: 1. rename equal method to `eq` so that it matches the regular kernels 2. change the implementation in batch_bool_float kernel to use ! not_equal which...