Closed IvyDev0 closed 6 years ago
I just tried to develop on IOS, but I cannot built an NNPACK lib fits arm64 of IOS. I then read the code in https://github.com/Maratyszcza/confu, and it seems like there's no IOS support.
You can't build NNPACK for iOS using confu, you need to use CMake with ios-cmake
I built NNPACK on macOS, and I followed the 'Development builds' in readme. I found that in the 'convolution-inference.cc' we need to make some changes, otherwise we would get fatal error: 'malloc.h' file not found.
memalign
intoposix_memalign
at the following two places:Also, the 'Cross-compilation' part in the readme.md does not mention IOS, so does it mean that we don't need extra configuration argument when cross-compiling NNPACK for IOS?