aboutsummaryrefslogtreecommitdiff
path: root/ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow/files/configure_tensorflow
blob: d7f41e2ef4d69ef97968e53bce49e9afbef8a80a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/expect
spawn "./configure"
expect {
  "*Please specify the location of python*" {send "\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}
}