Skip to content
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

change USE_MKLDNN default from ON (from #13303) to OFF for ppc64le #13759

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint check error
  • Loading branch information
avmgithub committed Nov 9, 2018
commit 87ae0f8499eaba9778c8fe4739eedc83726e088d
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def hotpatch_var(var, prefix='USE_'):
IS_WINDOWS = (platform.system() == 'Windows')
IS_DARWIN = (platform.system() == 'Darwin')
IS_LINUX = (platform.system() == 'Linux')
IS_PPC = (platform.machine() == 'ppc64le')
IS_PPC = (platform.machine() == 'ppc64le')

BUILD_PYTORCH = check_env_flag('BUILD_PYTORCH')
# ppc64le does not support MKLDNN
Expand Down