Remove some obsolete statements from variable_ops.cc.

PiperOrigin-RevId: 202581793
This commit is contained in:
A. Unique TensorFlower 2018-06-28 18:35:03 -07:00 committed by TensorFlower Gardener
parent 78d7a7783a
commit 3cee10e61c

View File

@ -73,9 +73,6 @@ void VariableOp::Compute(OpKernelContext* ctx) {
// here is valid because it owns a ref on var.
ctx->set_output_ref(0, var->mu(), var->tensor());
if (ctx->track_allocations() && var->tensor()->IsInitialized()) {
AllocatorAttributes attr;
attr.set_gpu_compatible(true);
attr.set_nic_compatible(true);
ctx->record_persistent_memory_allocation(var->tensor()->AllocatedBytes());
}
var->Unref();