aboutsummaryrefslogtreecommitdiff
path: root/ldcg-python-tensorflow/tensorflow/playbooks/files/configure_tensorflow
diff options
context:
space:
mode:
Diffstat (limited to 'ldcg-python-tensorflow/tensorflow/playbooks/files/configure_tensorflow')
-rw-r--r--ldcg-python-tensorflow/tensorflow/playbooks/files/configure_tensorflow14
1 files changed, 0 insertions, 14 deletions
diff --git a/ldcg-python-tensorflow/tensorflow/playbooks/files/configure_tensorflow b/ldcg-python-tensorflow/tensorflow/playbooks/files/configure_tensorflow
deleted file mode 100644
index 42ced5873b..0000000000
--- a/ldcg-python-tensorflow/tensorflow/playbooks/files/configure_tensorflow
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/expect
-spawn "./configure"
-expect {
- "*Please specify the location of python*" {send "/usr/bin/python3\r";exp_continue}
- "*Please input the desired Python library path to use*" {send "\r";exp_continue}
- "*Do you wish to build TensorFlow with XLA JIT support*" {send "n\r";exp_continue}
- "*Do you wish to build TensorFlow with OpenCL SYCL support*" {send "n\r";exp_continue}
- "*Do you wish to build TensorFlow with ROCm support*" {send "n\r";exp_continue}
- "*Do you wish to build TensorFlow with CUDA support*" {send "n\r";exp_continue}
- "*Do you wish to download a fresh release of clang*" {send "n\r";exp_continue}
- "*Do you wish to build TensorFlow with MPI support*" {send "n\r";exp_continue}
- "*Please specify optimization flags to use during compilation when bazel option*" {send "\r";exp_continue}
- "*Would you like to interactively configure*" {send "n\r";exp_continue}
-}