You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TensorFlow: Minor updates to docs, BUILD, GPU config / perf, etc.
Changes:
- Updates to op documentation and index by Josh
- More changes to BUILD files for python 3 support by @girving
- Fix to Eigen to use DenseIndex everywhere by @jiayq
- Enable configuration for cuda compute capability by @zheng-xq,
including updates to docs.
- Route aggregation method through optimizer by schuster
- Updates to install instructions for bazel 0.1.1.
Base CL: 107702099
echo -e "\nWARNING: You are configuring unofficial settings in TensorFlow. Because some external libraries are not backward compatible, these settings are largely untested and unsupported. \n"
81
+
82
+
# Configure the compute capabilities that TensorFlow builds for.
83
+
# Since Cuda toolkit is not backward-compatible, this is not guaranteed to work.
84
+
whiletrue;do
85
+
fromuser=""
86
+
if [ -z"$TF_CUDA_COMPUTE_CAPABILITIES" ];then
87
+
cat <<EOF
88
+
Please specify a list of comma-separated Cuda compute capabilities you want to build with.
89
+
You can find the compute capability of your device at: https://developer.nvidia.com/cuda-gpus.
90
+
Please note that each additional compute capability significantly increases your build time and binary size.
91
+
EOF
92
+
read -p "[Default is: \"3.5,5.2\"]: " TF_CUDA_COMPUTE_CAPABILITIES
93
+
fromuser=1
94
+
fi
95
+
# Check whether all capabilities from the input is valid
0 commit comments