Closed tuliom closed 2 years ago
File lib/crc32_ppc_asm.s was implemented to be executed on POWER8. However, the NX GZIP accelerator is available on POWER9.
We might get a small performance improvement by using an implementation in C using built-ins while building with -mcpu=power9.
-mcpu=power9
More importantly: P9 provides new instructions that could help with memory accesses on little-endian systems.
File lib/crc32_ppc_asm.s was implemented to be executed on POWER8. However, the NX GZIP accelerator is available on POWER9.
We might get a small performance improvement by using an implementation in C using built-ins while building with
-mcpu=power9
.