MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / __radd__

Method __radd__

tensorflow/python/framework/tensor_shape.py:941–944  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

939 return self.concatenate(other)
940
941 def __radd__(self, other):
942 if not isinstance(other, TensorShape):
943 other = TensorShape(other)
944 return other.concatenate(self)
945
946 def concatenate(self, other):
947 """Returns the concatenation of the dimension in `self` and `other`.

Callers

nothing calls this directly

Calls 2

concatenateMethod · 0.95
TensorShapeClass · 0.70

Tested by

no test coverage detected