USE_FBGEMM=True by default
authorJames Reed <jamesreed@fb.com>
Fri, 7 Dec 2018 22:14:25 +0000 (14:14 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Fri, 7 Dec 2018 22:22:55 +0000 (14:22 -0800)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/14868

Differential Revision: D13383390

Pulled By: jamesr66a

fbshipit-source-id: 1880c07dfd239e19153bd4fde2ab2c8d0604f956

tools/build_pytorch_libs.bat
tools/build_pytorch_libs.sh
tools/setup_helpers/fbgemm.py

index aed0ffd..6af203f 100755 (executable)
@@ -27,7 +27,7 @@ if not exist torch\lib\tmp_install mkdir torch\lib\tmp_install
 
 : Variable defaults
 set /a USE_CUDA=0
-set /a USE_FBGEMM=0
+set /a USE_FBGEMM=1
 set /a USE_ROCM=0
 set /a USE_NNPACK=0
 set /a USE_QNNPACK=0
index 63f169d..d164bdc 100755 (executable)
@@ -43,7 +43,7 @@ fi
 
 # Options for building only a subset of the libraries
 USE_CUDA=0
-USE_FBGEMM=0
+USE_FBGEMM=1
 USE_ROCM=0
 USE_NNPACK=0
 USE_MKLDNN=0
index 8599398..bd30bcc 100644 (file)
@@ -1,6 +1,6 @@
 from .env import check_env_flag
 
-USE_FBGEMM = False
+USE_FBGEMM = True
 
 if check_env_flag('NO_FBGEMM'):
     USE_FBGEMM = False