-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build fails on ppc64le #114
Comments
But maybe this isn't enough.. I see now that it's failing on some test. i.e.: $ make test and then:
2/34 Test #2: convolution-output-alexnet ..............***Failed 334.10 sec [==========] 22 tests from 3 test cases ran. (334097 ms total) I obviously have no idea what I'm doing, so if someone would be interested in guiding me through debugging this, that would be much appreciated. |
Try to configure with |
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)$")
The text was updated successfully, but these errors were encountered: