aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tf2xla/xla_cpu_backend.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/tf2xla/xla_cpu_backend.cc')
-rw-r--r--tensorflow/compiler/tf2xla/xla_cpu_backend.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/tensorflow/compiler/tf2xla/xla_cpu_backend.cc b/tensorflow/compiler/tf2xla/xla_cpu_backend.cc
index ead229aacc..23d04d43b3 100644
--- a/tensorflow/compiler/tf2xla/xla_cpu_backend.cc
+++ b/tensorflow/compiler/tf2xla/xla_cpu_backend.cc
@@ -31,6 +31,10 @@ bool CpuOpFilter(KernelDef* kdef) {
DT_FLOAT);
return true;
}
+ // TODO(b/26783907): The CPU backend currently does not implement sort.
+ if (kdef->op() == "XlaSort" || kdef->op() == "TopKV2") {
+ return false;
+ }
if (kdef->op() == "Const") {
AddDtypeToKernalDefConstraint("dtype", DT_STRING, kdef);
}