Searched refs:static_nrows (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/ops/structured/ |
D | structured_tensor.py | 237 static_nrows = tensor_shape.dimension_at_index(shape, 0) 239 nrows, static_nrows = _merge_nrows(nrows, static_nrows, value, 242 if static_nrows.value is None: 246 nrows = constant_op.constant(static_nrows.value, shape_dtype) 1199 def _merge_nrows(nrows, static_nrows, value, dtype, validate): argument 1224 static_nrows.value is not None): 1225 if not static_value_nrows.is_compatible_with(static_nrows): 1233 return nrows, static_nrows.merge_with(static_value_nrows) 1496 nrows = row_partition.static_nrows
|
D | structured_tensor_test.py | 473 static_nrows = tensor_shape.Dimension(5) 477 nrows, static_nrows, value, dtypes.int32, validate=False)
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | row_partition.py | 774 def static_nrows(self): member in RowPartition 1147 return cls(value.static_nrows, value.static_nvals,
|
D | ragged_tensor.py | 846 nrows = self._row_partition.static_nrows
|