HomeSort by relevance Sort by last modified time
    Searched refs:old_lhs (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
assign_op.h 60 const Tensor& old_lhs = context->mutable_input(0, /* lock_held */ true); variable
61 const bool same_shape = old_lhs.shape().IsSameSize(rhs.shape());
67 old_lhs.shape().DebugString(),
80 1, old_lhs.dtype(), old_lhs.shape(), DEVICE_MEMORY, attr);
89 if (old_lhs.IsInitialized() &&
90 old_lhs.shape().num_elements() == rhs.shape().num_elements()) {
95 reshaped_old_lhs = old_lhs;
97 CHECK(reshaped_old_lhs.CopyFrom(old_lhs, rhs.shape()));
110 context, context->allocate_persistent(old_lhs.dtype(), rhs.shape()
    [all...]
strided_slice_op.cc 291 Tensor old_lhs; variable
296 old_lhs = *v->tensor();
297 OP_REQUIRES(context, old_lhs.dtype() == DataTypeToEnum<T>::value,
299 "l-value dtype ", DataTypeString(old_lhs.dtype()),
304 old_lhs = context->mutable_input(0, true);
311 old_lhs.shape(), begin_mask, end_mask, ellipsis_mask, new_axis_mask,
318 TensorShape original_shape = old_lhs.shape();
337 &old_lhs); \

Completed in 211 milliseconds