Adrian Pflugshaupt

Results 7 comments of Adrian Pflugshaupt

I added ARM64 NEON support here: https://github.com/Pflugshaupt/muFFT I used a different CMake setup, but the actual SIMD parts are working, it just would need proper internal CMake patches. Unfortunately I...

Yes, but I only benchmark inside my current project, so this is not general at all. I do heaps of 8'192 real to complex 1d ffts. For this pffft on...

Ok, I'll give it a try once I'm done migrating to Highway and gained some more experience with it. That'll be in January. Thanks for letting me know I'm not...

Is it possible to do dynamic dispatch across all targets with one step in Visual Studio when compiling with clang-cl, or does it have the same restrictions as the msvc...

Thank you for your time and quick answer. It made me keep trying and I was able to find the true problem. I can confirm things work fine with visual...

Update: Just got it to work thanks to this: https://stackoverflow.com/questions/71720201/why-does-msvc-compiler-put-template-instantiation-binaries-in-assembly However my solution (msvc 2022 + clang-cl) so far is somewhat inelegant and seems to defy logic. It requires -...

Wow - thanks heaps! That was it! I was aware of HWY_BEFORE_NAMESPACE/HWY_AFTER_NAMESPACE, but I was mixing lambdas and templates with lambda arguments to get as DRY as possible and adding...