diff --git a/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh b/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh index 363e5bc0d35..3ddcafb88cf 100644 --- a/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh +++ b/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh @@ -106,8 +106,7 @@ if [[ "$RELEASE_BUILD" == 1 ]]; then # Overriding eigen strong inline speeds up the compiling of conv_grad_ops_3d.cc and conv_ops_3d.cc # by 20 minutes. See https://github.com/tensorflow/tensorflow/issues/10521 # Because this hurts the performance of TF, we don't override it in release build. - # TODO(ggadde): Temporarily override for release builds as well to debug failures. - export TF_OVERRIDE_EIGEN_STRONG_INLINE=1 + export TF_OVERRIDE_EIGEN_STRONG_INLINE=0 else export TF_OVERRIDE_EIGEN_STRONG_INLINE=1 fi diff --git a/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh b/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh index aca8fc71f18..bdd70eb9281 100644 --- a/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh +++ b/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh @@ -106,8 +106,7 @@ if [[ "$RELEASE_BUILD" == 1 ]]; then # Overriding eigen strong inline speeds up the compiling of conv_grad_ops_3d.cc and conv_ops_3d.cc # by 20 minutes. See https://github.com/tensorflow/tensorflow/issues/10521 # Because this hurts the performance of TF, we don't override it in release build. - # TODO(ggadde): Temporarily override for release builds as well to debug failures. - export TF_OVERRIDE_EIGEN_STRONG_INLINE=1 + export TF_OVERRIDE_EIGEN_STRONG_INLINE=0 else export TF_OVERRIDE_EIGEN_STRONG_INLINE=1 fi