eve icon indicating copy to clipboard operation
eve copied to clipboard

Expressive Vector Engine - SIMD in C++ Goes Brrrr

Results 152 eve issues
Sort by recently updated
recently updated
newest added

https://spack.readthedocs.io/en/latest/package_list.html?highlight=eve#eve This says: https://jfalcou.github.io/eve/html/index.html But this one is broken Should be: https://jfalcou.github.io/eve/

bug

Pre-Release - [x] Merge #1354 - [ ] Merge #1342 - [ ] Move to Boost Software Licence - [ ] Regenerate documentation - [ ] Prepare Changelog Post-release -...

release-candidate
in-progress

Example: https://godbolt.org/z/z63jejjGK They just do it in scalar. They should use convert instead.

bug
reproduced

implementaion of enumerating make on sve

Left 2. A lot of dependencies.

enhancement

If after gcc12 __ARM_FEATURE_SVE_PREDICATE_OPERATORS is supported, we can just switch to using `operator[]` If not - we need to find smth remotely ok. I did the first thing that works.

feature
arch:arm

Arm has those for sve for sure, for neon maybe - we should generate them.

feature
arch:arm

I wrote this: ``` return { eve::min(x,y), eve::max(x, y) }; ``` But, unfortunately gcc does not optimise it properly. https://godbolt.org/z/EaPG85KMx

enhancement

There is a native "index" (i.e.) iota instruction on sve. We should utilize it in iota. We should also use it for `make`

enhancement
arch:arm