aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/legacy_flags
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-07-06 13:17:39 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-06 13:21:45 -0700
commitb87774c9d8f0eae067bd65793f52f90f0b2d8228 (patch)
tree28b220cc15588069610f402681aca1dcfa5cd607 /tensorflow/compiler/xla/legacy_flags
parenta22dad9836b74a20e900d426f6e9e611df36a056 (diff)
[TF:XLA] Remove flag --xla_enable_buffer_reuse.
The corresponding issues have been fixed, so this should not be needed anymore. PiperOrigin-RevId: 161120874
Diffstat (limited to 'tensorflow/compiler/xla/legacy_flags')
-rw-r--r--tensorflow/compiler/xla/legacy_flags/debug_options_flags.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/tensorflow/compiler/xla/legacy_flags/debug_options_flags.cc b/tensorflow/compiler/xla/legacy_flags/debug_options_flags.cc
index 4a6b0b581c..2f3ec403a0 100644
--- a/tensorflow/compiler/xla/legacy_flags/debug_options_flags.cc
+++ b/tensorflow/compiler/xla/legacy_flags/debug_options_flags.cc
@@ -42,7 +42,6 @@ struct DebugOptionsFlags {
string xla_dump_ir_to;
string xla_dump_debug_json_to;
bool xla_eliminate_hlo_implicit_broadcast;
- bool xla_enable_buffer_reuse;
bool xla_cpu_multi_thread_eigen;
@@ -79,7 +78,6 @@ void AllocateFlags() {
flag_values->xla_dump_ir_to = "";
flag_values->xla_dump_debug_json_to = "";
flag_values->xla_eliminate_hlo_implicit_broadcast = false;
- flag_values->xla_enable_buffer_reuse = true;
flag_values->xla_cpu_multi_thread_eigen = true;
flag_values->xla_gpu_cuda_data_dir = "./cuda_sdk_lib";
flag_values->xla_gpu_ftz = false;
@@ -146,9 +144,6 @@ void AllocateFlags() {
"Eliminate implicit broadcasts when lowering user "
"computations to HLO instructions; use explicit "
"broadcast instead."),
- tensorflow::Flag("xla_enable_buffer_reuse",
- &flag_values->xla_enable_buffer_reuse,
- "Enable reuse of buffers between HLO operations."),
tensorflow::Flag("xla_cpu_multi_thread_eigen",
&flag_values->xla_cpu_multi_thread_eigen,
"When generating calls to Eigen in the CPU backend, "
@@ -207,7 +202,6 @@ xla::DebugOptions GetDebugOptionsFromFlags() {
options.set_xla_dump_ir_to(flag_values->xla_dump_ir_to);
options.set_xla_eliminate_hlo_implicit_broadcast(
flag_values->xla_eliminate_hlo_implicit_broadcast);
- options.set_xla_enable_buffer_reuse(flag_values->xla_enable_buffer_reuse);
options.set_xla_dump_debug_json_to(flag_values->xla_dump_debug_json_to);
options.set_xla_cpu_multi_thread_eigen(