aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-04-05 13:12:26 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-05 13:14:59 -0700
commitc1990c07018e56dfb40362f60e5c5698d425ff2f (patch)
tree60458947e435fb007b5ac9ea5d036e3d503d9fd6
parent6cf501a34afc9401a92624ef3ad3a4c8b8e1b43b (diff)
[XLA] Remove a dead function and a stale todo.
PiperOrigin-RevId: 191786563
-rw-r--r--tensorflow/compiler/xla/service/service.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/tensorflow/compiler/xla/service/service.h b/tensorflow/compiler/xla/service/service.h
index e09d58bbe7..9fa72c1b8c 100644
--- a/tensorflow/compiler/xla/service/service.h
+++ b/tensorflow/compiler/xla/service/service.h
@@ -300,8 +300,6 @@ class Service : public ServiceInterface {
Service(const ServiceOptions& options,
std::unique_ptr<Backend> execute_backend);
- static StatusOr<std::unique_ptr<Backend>> CreateComputeConstantBackend();
-
// Resolves the given argument handles in the allocation tracker and returns
// the corresponding allocations for every replica. The function also verifies
// that each allocation matches the execution platform and device ordinal of
@@ -437,8 +435,6 @@ class Service : public ServiceInterface {
CompilationCache compilation_cache_;
// Backend to compile and execute computations on.
- //
- // TODO(b/28616830): Support multiple backends for execution.
std::unique_ptr<Backend> execute_backend_;
TF_DISALLOW_COPY_AND_ASSIGN(Service);