catid / gf256

GF256 - Fast 8-bit Galois Field Math in C
BSD 3-Clause "New" or "Revised" License
51 stars 11 forks source link

State of ARM NEON support #7

Closed seeul8er closed 4 years ago

seeul8er commented 4 years ago

Hi! Greate project 👍 What is the current state of the ARM NEON support? What are the recommended compile options (set flags GF256_TRY_NEONor HAVE_ARM_NEON_H)? I am interested in running it on the Raspberry Pi and only really need gf256_mul_mem() and gf256_muladd_mem()

catid commented 4 years ago

I'd add your architecture's define to this list in the header:

#if defined(ANDROID) || defined(IOS) || defined(LINUX_ARM) || defined(__powerpc__) || defined(__s390__)