aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_module_config.h
diff options
context:
space:
mode:
authorGravatar Mark Heffernan <meheff@google.com>2017-10-04 11:18:41 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-04 11:26:14 -0700
commit6b90a65f6f0651464c402cd2401da488772ceb7b (patch)
tree94451bef708becd8b3b03c6146c12b78d63db0e8 /tensorflow/compiler/xla/service/hlo_module_config.h
parent41a0264ab60fa18badf0014fe6d39186736ada3a (diff)
Remove "hybrid" HloModuleConfig option. The option was used to generate executables which only generated the array values of tuple-shaped outputs, not the tuple index tables.. With cl/170133015, ShapedBuffers which hold the computation output now have materialized tuples with these index tables so this option is no longer desired or necessary.
No functional change. Just cleanup. PiperOrigin-RevId: 171035738
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_module_config.h')
-rw-r--r--tensorflow/compiler/xla/service/hlo_module_config.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_module_config.h b/tensorflow/compiler/xla/service/hlo_module_config.h
index 2299200b5b..4a7ead9c10 100644
--- a/tensorflow/compiler/xla/service/hlo_module_config.h
+++ b/tensorflow/compiler/xla/service/hlo_module_config.h
@@ -67,11 +67,6 @@ class HloModuleConfig {
bool hlo_profiling_enabled() const { return hlo_profiling_enabled_; }
void enable_hlo_profiling(bool enabled) { hlo_profiling_enabled_ = enabled; }
- bool has_hybrid_result() const { return has_hybrid_result_; }
- void set_has_hybrid_result(bool has_hybrid_result) {
- has_hybrid_result_ = has_hybrid_result;
- }
-
// Sets/returns the module seed set during execution.
void set_seed(uint64 seed) { seed_ = seed; }
uint64 seed() const { return seed_; }