kfjahnke

Results 29 issues of kfjahnke

Vc version / revision | Operating System | Compiler & Version | Compiler Flags | Assembler & Version | CPU 1.4.1 | ubuntu 20.04 | g++ 9.3.0 | -Ofast |...

Ubuntu 19.04 just came out, so I gave it a spin. It contains the vc-dev package in version 1.3.4 and clang++ is now version 7 by default. These two don't...

I have coded an arithmetic template class mimicking Vc::SimdArray to allow a tentative port of my application [lux](https://bitbucket.org/kfj/pv) from Vc to highway. The stand-in type is not complete, but it...

Is there code to do integer division/remainder division and/or modulo? And I'd also like to see atan2!

As a follow-up to personal communication with @jan-wassenberg, I'd like to propose a technique here which I implemented as an intermediate layer between code intending to 'behave' in a SIMD...

clang++ (clang version 10.0.0-4ubuntu1) yields zero when abs() is called with a float vector. Here's code to reproduce the error: ```cpp #include #include int main ( int argc , char...

version / revision | Operating System | Compiler & Version | Compiler Flags | CPU repo as per Dec 14 2020 | ubuntu 20.04 | clang++ 10.0.0 | --std=c++17 |...

Going through the 'Working Draft, C++Extensions forParallelism Version 2', I could not find any reference to gather/scatter functions. How is this supposed to be done? Additionally, I think that strided...

enhancement

I have posted a [lengthy post](https://github.com/google/highway/issues/641#issuecomment-1125700070) on highway's issue tracker concerning the use of my cppyy-based [b-spline module](https://bitbucket.org/kfj/python-vspline), modified to use highway instead of Vc for SIMD code. I'm posting...

Dear group! Working on my b-spline library [vspline](https://bitbucket.org/kfj/vspline), I have used SIMD data types together with vigra. I have investigated several approches to SIMD programming by using/defining several SIMD data...