aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h
diff options
context:
space:
mode:
authorGravatar Tong Shen <endlessroad@google.com>2018-08-21 15:31:34 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-21 15:35:20 -0700
commitb1b2cb38f2fcf089f8fc238d3c72cf9507887ed3 (patch)
treed93dab35a3831cfb6e9d5ea5804b58672562e874 /tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h
parent0f02f05913e03889bbcb85e71a6d005a8519bfb9 (diff)
Remove HostCompute HLO.
Now for host compute, we just emit SendToHost & RecvFromHost pairs, and use token to ensure dependency. PiperOrigin-RevId: 209671416
Diffstat (limited to 'tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h')
-rw-r--r--tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h b/tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h
index 617a5a2eb4..20c6bafe7c 100644
--- a/tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h
+++ b/tensorflow/compiler/xla/service/dfs_hlo_visitor_with_default.h
@@ -106,9 +106,6 @@ class DfsHloVisitorWithDefaultBase
Status HandleOutfeed(HloInstructionPtr outfeed) override {
return DefaultAction(outfeed);
}
- Status HandleHostCompute(HloInstructionPtr host_compute) override {
- return DefaultAction(host_compute);
- }
Status HandleReverse(HloInstructionPtr reverse) override {
return DefaultAction(reverse);
}