Andy Simpson
Andy Simpson
The type of xnn_table_exp2minus_k_over_16 varies between declarations. It's defined as `uint32_t[64]` [here](https://github.com/google/XNNPACK/blob/4f09c54b7445c3c23e84dfe6fc9cf1a56392f604/src/tables/exp2minus-k-over-64.c#L12) but other declarations have various different types. For example, [here](https://github.com/google/XNNPACK/blob/4f09c54b7445c3c23e84dfe6fc9cf1a56392f604/src/amalgam/gen/sse2.c#L2434) it's declared as `float[64]`. This is illegal in...
Addresses #3455 Takes the approach of detecting the use of Wasm SIMD by detecting if the requisite flags have been added to CMAKE_C_FLAGS or CMAKE_CXX_FLAGS. Adding the SIMD flags to...