Closed janfrode closed 7 years ago
But maybe this isn't enough.. I see now that it's failing on some test. i.e.:
$ make test Running tests... Test project /home/janfrode/caffe2-1/third_party/NNPACK Start 1: convolution-output-smoketest 1/34 Test #1: convolution-output-smoketest ............***Failed 6.17 sec
Try to configure with -DNNPACK_BACKEND="psimd"
, maybe that helps
Generally, NNPACK on PPC64 is not supported, and some planned future changes will make it impossible to build on PPC64.
Ok, thanks. I'll just disable NNPACK in my caffe2 build then.
I failed to build on ppc64le because of:
~/caffe2-1/third_party/NNPACK$ cmake . CMake Error at CMakeLists.txt:30 (MESSAGE): Unrecognized CMAKE_SYSTEM_PROCESSOR = ppc64le
It works if I add ppc64le to line 29 of CMakeLists.txt:
ELSEIF(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^(i686|x86_64|armv5te|armv7-a|armv7l|aarch64|ppc64le)$")