Home
last modified time | relevance | path

Searched refs:expected_value_shape (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dlookup_interface.cc51 TensorShape expected_value_shape = keys.shape(); in CheckKeyAndValueTensorsHelper() local
53 expected_value_shape.RemoveDim(expected_value_shape.dims() - 1); in CheckKeyAndValueTensorsHelper()
55 expected_value_shape.AppendShape(value_shape()); in CheckKeyAndValueTensorsHelper()
56 if (values.shape() != expected_value_shape) { in CheckKeyAndValueTensorsHelper()
58 "Expected shape ", expected_value_shape.DebugString(), in CheckKeyAndValueTensorsHelper()
/external/tensorflow/tensorflow/core/kernels/
Dlookup_table_op.cc541 TensorShape expected_value_shape = keys.shape(); in CheckKeyAndValueTensorsForImport() local
542 expected_value_shape.RemoveLastDims(key_shape.dims()); in CheckKeyAndValueTensorsForImport()
543 expected_value_shape.AppendShape(value_shape); in CheckKeyAndValueTensorsForImport()
544 if (values.shape() != expected_value_shape) { in CheckKeyAndValueTensorsForImport()
546 "Expected shape ", expected_value_shape.DebugString(), in CheckKeyAndValueTensorsForImport()