aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core')
-rw-r--r--tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc2
-rw-r--r--tensorflow/core/kernels/BUILD8
2 files changed, 4 insertions, 6 deletions
diff --git a/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc b/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc
index ecd272a5be..729aa36803 100644
--- a/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc
+++ b/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc
@@ -92,7 +92,7 @@ class RpcRecvTensorCall : public BaseRecvTensorCall {
// RpcRecvTensorCall, and it always sets this->wi_ to null when
// a call object is released to it, we can assert that this->wi_ is
// always null at the point of deletion.
- CHECK_EQ(nullptr, wi_)
+ CHECK_EQ(static_cast<WorkerInterface*>(nullptr), wi_)
<< "Leaking WorkerInterface in RpcRecvTensorCall destructor.";
}
diff --git a/tensorflow/core/kernels/BUILD b/tensorflow/core/kernels/BUILD
index 15d64ea4cc..fd7265e4ed 100644
--- a/tensorflow/core/kernels/BUILD
+++ b/tensorflow/core/kernels/BUILD
@@ -25,7 +25,6 @@ package_group(
load(
"//tensorflow:tensorflow.bzl",
- "if_not_windows",
"tf_cc_test",
"tf_cc_tests",
"tf_copts",
@@ -2390,6 +2389,8 @@ cc_library(
":batch_norm_op",
":bias_op",
":conv_ops",
+ ":depthwise_conv_grad_op",
+ ":depthwise_conv_op",
":dilation_ops",
":fused_batch_norm_op",
":in_topk_op",
@@ -2401,10 +2402,7 @@ cc_library(
":softsign_op",
":topk_op",
":xent_op",
- ] + if_not_windows([
- ":depthwise_conv_grad_op",
- ":depthwise_conv_op",
- ]),
+ ],
)
NN_DEPS = [