ermig1979 / Simd

C++ image processing and machine learning library with using of SIMD: SSE, AVX, AVX-512, AMX for x86/x64, NEON for ARM.
http://ermig1979.github.io/Simd
MIT License
2.06k stars 413 forks source link

ResizeBilinearGray for NEON #43

Closed teor292 closed 6 years ago

teor292 commented 6 years ago

Hi! There are ResizeBilinearGray optimization functions for SSSE3, AVX2 and AVX512, but not for NEON. So, I created such function for NEON and test it, but separately from Simd (unfortunately, I do not have the opportunity to test it together with the library on the ARM now). It seems like it works. Please, test it and add to repo. SimdNeonResizeBilinear.txt

teor292 commented 6 years ago

Oh sorry, it works not for all sizes -_-

Looks like these works. SimdNeonResizeBilinear.txt

ermig1979 commented 6 years ago

Hello. You forgot to update Copyrights.

teor292 commented 6 years ago

Ok. SimdNeonResizeBilinear.txt

ermig1979 commented 6 years ago

I have added your changes. Please check their.

teor292 commented 6 years ago

Ok, thanks.