aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/local_service.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/local_service.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/local_service.h')
-rw-r--r--tensorflow/compiler/xla/service/local_service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/service/local_service.h b/tensorflow/compiler/xla/service/local_service.h
index f2bfb960f4..52c4346385 100644
--- a/tensorflow/compiler/xla/service/local_service.h
+++ b/tensorflow/compiler/xla/service/local_service.h
@@ -45,7 +45,7 @@ class LocalService : public Service {
StatusOr<std::unique_ptr<Executable>> CompileExecutable(
const ComputationHandle& computation,
const tensorflow::gtl::ArraySlice<const Shape*> argument_layouts,
- const Shape* result_layout, int device_ordinal, bool has_hybrid_result);
+ const Shape* result_layout, int device_ordinal);
private:
explicit LocalService(const ServiceOptions& options,