aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/jit
diff options
context:
space:
mode:
authorGravatar Sanjoy Das <sanjoy@google.com>2018-09-18 13:05:23 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-18 13:09:15 -0700
commit199cb7746c7ad92d7be344363d8276c45fc7a4b8 (patch)
treebe130a1e161b1cb115e2e7e190a1383a34871f21 /tensorflow/compiler/jit
parente8be4d96dd4d3d9d6b12b778a5b8beee592a324a (diff)
Register FakeResourceUpdateOp for the right op
Before this CL the PartiallyDeclusterPassTest.DontDuplicateResourceVarOps test was buggy, in that it wasn't testing what it was supposed to test. PiperOrigin-RevId: 213501558
Diffstat (limited to 'tensorflow/compiler/jit')
-rw-r--r--tensorflow/compiler/jit/partially_decluster_pass_test.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/tensorflow/compiler/jit/partially_decluster_pass_test.cc b/tensorflow/compiler/jit/partially_decluster_pass_test.cc
index 35872daa65..0feb73a89e 100644
--- a/tensorflow/compiler/jit/partially_decluster_pass_test.cc
+++ b/tensorflow/compiler/jit/partially_decluster_pass_test.cc
@@ -60,9 +60,9 @@ class FakeBinaryOp : public OpKernel {
void Compute(OpKernelContext* ctx) override { CHECK(false); }
};
-class FakeResourceVarUpdateOp : public OpKernel {
+class FakeResourceUpdateOp : public OpKernel {
public:
- explicit FakeResourceVarUpdateOp(OpKernelConstruction* context)
+ explicit FakeResourceUpdateOp(OpKernelConstruction* context)
: OpKernel(context) {}
void Compute(OpKernelContext* ctx) override { CHECK(false); }
@@ -74,10 +74,9 @@ REGISTER_KERNEL_BUILDER(Name("FakeBinary")
.HostMemory("host_out"),
FakeBinaryOp);
-REGISTER_KERNEL_BUILDER(Name("FakeResourceVarUpdate")
- .Device(DEVICE_CPU)
- .HostMemory("something_else"),
- FakeResourceVarUpdateOp);
+REGISTER_KERNEL_BUILDER(
+ Name("FakeResourceUpdate").Device(DEVICE_CPU).HostMemory("something_else"),
+ FakeResourceUpdateOp);
Status PartiallyDecluster(std::unique_ptr<Graph>* graph) {
FixupSourceAndSinkEdges(graph->get());