Results 186 comments of Ferenc Pintér

Yes, the difference is significant. (Myrsloik has another fft3dfilter version which - if I remember well - was comparable or better than neo's numbers.)

Which toolset are you using? Seems like the toolset check is not complete, and this clang version does not report MS compatible versioning, it's not pretending to be an ms...

Yeah, much simpler. But something is still different. How did you make it built? When I said that I had successful build with the "hacked" v141_clang_c2, I was wrong. It...

In newer gcc (and clang?) function level attributes exist. https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#Common-Function-Attributes See "target" section. E.g. ``` int core2_func (void) __attribute__ ((__target__ ("arch=core2"))); int sse3_func (void) __attribute__ ((__target__ ("sse3"))); ``` This is...

Actually Shibatch source needed a minor fix to compile properly.

Those attributes will work, I'll probably implement them. I've just tried it on RemoveDirt project. So this is the way to go, probably works for gcc as well (contrary to...

Please check latest commits. I'm using LLVM 8.0. Lots of code changes, mainly in order to let clang (and hopefully gcc) to apply special code generation attributes for CPU extensions...

I understood the resampler troubles, giving an SSE4.1 forceinlined function as template parameter for an SSSE3 function, strange clang did not noticed. A similar issue was fixed earlier at an...

LLVM dropped XP support 3 years ago. @qyot27: by this documentation function attributes appear after the function: https://gcc.gnu.org/onlinedocs/gcc-4.9.1/gcc/Function-Attributes.html#Function-Attributes On the other hand, there are situations which feel better with placing...

There was a forgotten local commit for the "blend" issue which I have finally sync'd today, maybe that is missing? I hope that is the only problem.